diff --git a/daemon.py b/daemon.py
index 491eeb781..b3c939fcc 100644
--- a/daemon.py
+++ b/daemon.py
@@ -128,6 +128,7 @@ from roles import setRole
from roles import clearModeratorStatus
from roles import clearEditorStatus
from roles import clearCounselorStatus
+from roles import clearArtistStatus
from blog import htmlBlogPageRSS2
from blog import htmlBlogPageRSS3
from blog import htmlBlogView
@@ -213,6 +214,7 @@ from utils import hasUsersPath
from utils import getFullDomain
from utils import removeHtml
from utils import isEditor
+from utils import isArtist
from utils import getImageExtensions
from utils import mediaFileMimeType
from utils import getCSS
@@ -4268,6 +4270,38 @@ class PubServer(BaseHTTPRequestHandler):
if checkNameAndBio:
redirectPath = 'previewAvatar'
+ if nickname == adminNickname or \
+ isArtist(baseDir, nickname):
+ # change theme
+ if fields.get('themeDropdown'):
+ self.server.themeName = fields['themeDropdown']
+ setTheme(baseDir, self.server.themeName, domain,
+ allowLocalNetworkAccess, systemLanguage)
+ self.server.textModeBanner = \
+ getTextModeBanner(self.server.baseDir)
+ self.server.iconsCache = {}
+ self.server.fontsCache = {}
+ self.server.showPublishAsIcon = \
+ getConfigParam(self.server.baseDir,
+ 'showPublishAsIcon')
+ self.server.fullWidthTimelineButtonHeader = \
+ getConfigParam(self.server.baseDir,
+ 'fullWidthTimelineButtonHeader')
+ self.server.iconsAsButtons = \
+ getConfigParam(self.server.baseDir,
+ 'iconsAsButtons')
+ self.server.rssIconAtTop = \
+ getConfigParam(self.server.baseDir,
+ 'rssIconAtTop')
+ self.server.publishButtonAtTop = \
+ getConfigParam(self.server.baseDir,
+ 'publishButtonAtTop')
+ setNewsAvatar(baseDir,
+ fields['themeDropdown'],
+ httpPrefix,
+ domain,
+ domainFull)
+
if nickname == adminNickname:
# change media instance status
if fields.get('mediaInstance'):
@@ -4352,36 +4386,6 @@ class PubServer(BaseHTTPRequestHandler):
"blogsInstance",
self.server.blogsInstance)
- # change theme
- if fields.get('themeDropdown'):
- self.server.themeName = fields['themeDropdown']
- setTheme(baseDir, self.server.themeName, domain,
- allowLocalNetworkAccess, systemLanguage)
- self.server.textModeBanner = \
- getTextModeBanner(self.server.baseDir)
- self.server.iconsCache = {}
- self.server.fontsCache = {}
- self.server.showPublishAsIcon = \
- getConfigParam(self.server.baseDir,
- 'showPublishAsIcon')
- self.server.fullWidthTimelineButtonHeader = \
- getConfigParam(self.server.baseDir,
- 'fullWidthTimelineButtonHeader')
- self.server.iconsAsButtons = \
- getConfigParam(self.server.baseDir,
- 'iconsAsButtons')
- self.server.rssIconAtTop = \
- getConfigParam(self.server.baseDir,
- 'rssIconAtTop')
- self.server.publishButtonAtTop = \
- getConfigParam(self.server.baseDir,
- 'publishButtonAtTop')
- setNewsAvatar(baseDir,
- fields['themeDropdown'],
- httpPrefix,
- domain,
- domainFull)
-
# change instance title
if fields.get('instanceTitle'):
currInstanceTitle = \
@@ -4872,6 +4876,62 @@ class PubServer(BaseHTTPRequestHandler):
edNick, domain,
'counselor')
+ # change site artists list
+ if fields.get('artists'):
+ if path.startswith('/users/' +
+ adminNickname + '/'):
+ artistsFile = \
+ baseDir + \
+ '/accounts/artists.txt'
+ clearArtistStatus(baseDir)
+ if ',' in fields['artists']:
+ # if the list was given as comma separated
+ edFile = open(artistsFile, "w+")
+ eds = fields['artists'].split(',')
+ for edNick in eds:
+ edNick = edNick.strip()
+ edDir = baseDir + \
+ '/accounts/' + edNick + \
+ '@' + domain
+ if os.path.isdir(edDir):
+ edFile.write(edNick + '\n')
+ edFile.close()
+ eds = fields['artists'].split(',')
+ for edNick in eds:
+ edNick = edNick.strip()
+ edDir = baseDir + \
+ '/accounts/' + edNick + \
+ '@' + domain
+ if os.path.isdir(edDir):
+ setRole(baseDir,
+ edNick, domain,
+ 'artist')
+ else:
+ # nicknames on separate lines
+ edFile = open(artistsFile, "w+")
+ eds = fields['artists'].split('\n')
+ for edNick in eds:
+ edNick = edNick.strip()
+ edDir = \
+ baseDir + \
+ '/accounts/' + edNick + \
+ '@' + domain
+ if os.path.isdir(edDir):
+ edFile.write(edNick + '\n')
+ edFile.close()
+ eds = fields['artists'].split('\n')
+ for edNick in eds:
+ edNick = edNick.strip()
+ edDir = \
+ baseDir + \
+ '/accounts/' + \
+ edNick + '@' + \
+ domain
+ if os.path.isdir(edDir):
+ setRole(baseDir,
+ edNick, domain,
+ 'artist')
+
# remove scheduled posts
if fields.get('removeScheduledPosts'):
if fields['removeScheduledPosts'] == 'on':
@@ -4896,7 +4956,10 @@ class PubServer(BaseHTTPRequestHandler):
# remove a custom font
if fields.get('removeCustomFont'):
- if fields['removeCustomFont'] == 'on':
+ if (fields['removeCustomFont'] == 'on' and
+ (isArtist(baseDir, nickname) or
+ path.startswith('/users/' +
+ adminNickname + '/'))):
fontExt = ('woff', 'woff2', 'otf', 'ttf')
for ext in fontExt:
if os.path.isfile(baseDir +
@@ -4912,28 +4975,30 @@ class PubServer(BaseHTTPRequestHandler):
currTheme = getTheme(baseDir)
if currTheme:
self.server.themeName = currTheme
+ allowLocalNetworkAccess = \
+ self.server.allowLocalNetworkAccess
setTheme(baseDir, currTheme, domain,
- self.server.allowLocalNetworkAccess,
+ allowLocalNetworkAccess,
systemLanguage)
self.server.textModeBanner = \
- getTextModeBanner(self.server.baseDir)
+ getTextModeBanner(baseDir)
self.server.iconsCache = {}
self.server.fontsCache = {}
self.server.showPublishAsIcon = \
- getConfigParam(self.server.baseDir,
+ getConfigParam(baseDir,
'showPublishAsIcon')
self.server.fullWidthTimelineButtonHeader = \
- getConfigParam(self.server.baseDir,
+ getConfigParam(baseDir,
'fullWidthTimeline' +
'ButtonHeader')
self.server.iconsAsButtons = \
- getConfigParam(self.server.baseDir,
+ getConfigParam(baseDir,
'iconsAsButtons')
self.server.rssIconAtTop = \
- getConfigParam(self.server.baseDir,
+ getConfigParam(baseDir,
'rssIconAtTop')
self.server.publishButtonAtTop = \
- getConfigParam(self.server.baseDir,
+ getConfigParam(baseDir,
'publishButtonAtTop')
# only receive DMs from accounts you follow
@@ -5033,14 +5098,17 @@ class PubServer(BaseHTTPRequestHandler):
actorChanged = True
# grayscale theme
- grayscale = False
- if fields.get('grayscale'):
- if fields['grayscale'] == 'on':
- grayscale = True
- if grayscale:
- enableGrayscale(baseDir)
- else:
- disableGrayscale(baseDir)
+ if path.startswith('/users/' +
+ adminNickname + '/') or \
+ isArtist(baseDir, nickname):
+ grayscale = False
+ if fields.get('grayscale'):
+ if fields['grayscale'] == 'on':
+ grayscale = True
+ if grayscale:
+ enableGrayscale(baseDir)
+ else:
+ disableGrayscale(baseDir)
# save filtered words list
filterFilename = \
diff --git a/defaultcategories/en.xml b/defaultcategories/en.xml
index a3daa9220..559a22c52 100644
--- a/defaultcategories/en.xml
+++ b/defaultcategories/en.xml
@@ -4,603 +4,636 @@
#categories
-
retro
- retrocomputer kommunalwahl 90sretro A500 CreativeCommons atarist vax retroarch commodore teletext Retromeme matariki floppy recommendation 8bit cassette atari atari800 trs80 communication floppydisk retrocomputing C64 bbs ansi plan9 80s microcomputing kommunikation vaxvms retroarcade zdfretro cassette_tapes omm retrogaming z80 8bitdo retro atari800xl retropie commodore64 cassettetapes retrogame amiga bbcmicro microcomputer bbsing commercial
+ retrocomputer kommunalwahl 90sretro A500 CreativeCommons atarist SistersWithTransistors EthnicCleansing vax retroarch commodore teletext Retromeme matariki floppy recommendation 8bit cassette arcade atari communicators atari800 trs80 communication floppydisk retrocomputing C64 nostalgia bbs ansi plan9 80s microcomputing kommunikation vaxvms retroarcade zdfretro cassette_tapes bonhomme omm retrogaming z80 8bitdo retro atari800xl telekommunikation retropie commodore64 cassettetapes retrogame amiga bbcmicro retrofriday microcomputer bbsing commercial
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
economics
- Europe workercoop cooperatives accounting bank bitcoin noplanetb feministeconomics WealthConcentration valueflows coops holochain valuesovereignty funding platformcoop pico usebitcoin shitcoin consommation workercoops economics value business platformcooperatives exoplanets shopping displacement economic poplar shop companyculture plaintextaccounting sovereignty crowdfund oops fairtrade RIPpla bankingCartel rope Bitcoin startups radicalcooperation HenryGeorge plant plausible economíasolidaria disablitycrowdfund crowdfunding limitstogrowth ponzi companies theygrowupfast hermannplatz sharingiscaring techcoops plastikfrei meetcoop disability micropatronage lgbtcrowdfund mehrplatzfürsrad monetize ua cryptocurrencies degrowth a2pico smallbusiness deliveroo intellectualproperty pla kommerzialisierung GitPay Fedigrowth gdp deplatforming coop smallbusinesses europeancentralbank whyBitcoin cryptocurrency infoshop grow growth limits fuckfoodbanks values banks planetary plannedObsolence planet worldbank
+ Europe workercoop InformationFriction cooperatives accounting bank bitcoin noplanetb feministeconomics WealthConcentration valueflows coops holochain valuesovereignty funding platformcoop pico usebitcoin shitcoin consommation workercoops economics radical value business platformcooperatives exoplanets shopping displacement economic poplar shop companyculture plaintextaccounting MarketForLemons sovereignty crowdfund oops fairtrade RIPpla bankingCartel rope Bitcoin startups radicalcooperation HenryGeorge plant plausible economíasolidaria disablitycrowdfund crowdfunding limitstogrowth ponzi companies theygrowupfast hermannplatz sharingiscaring techcoops plastikfrei plantprotein meetcoop disability micropatronage merz lgbtcrowdfund mehrplatzfürsrad monetize ua cryptocurrencies degrowth a2pico smallbusiness deliveroo intellectualproperty pla kommerzialisierung GitPay Fedigrowth gdp deplatforming coop smallbusinesses europeancentralbank whyBitcoin cryptocurrency infoshop sine grow growth limits fuckfoodbanks values banks planetary plannedObsolence planet worldbank
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ climate
+ YouStormOutlook energy SoilCarbon vampire renewables fuel clouds apollo racisme antira mitm openscience renewableenergy ClimateMeme amp climateemergency climatechos ClimateAction climate climateracism renewable windenergy ClimateProtection sciences coal antiracism globalsouth weatherforecast crisis foodcrisis vampiro energyvisions klimaatcrisis environment skypack poll fossilfuel earthscience tramp globalwarming climatechange mitigation limitededition weather ragingqueerenergy fossilcriminals camps climatecamp ClimateRefigees windpower sealevelrise globally globalization climatechoas racism CarbonOffsets basecamp exitpoll Tyskysour pollution global parisclimateagreement science fossil OABarcamp21 fossilfuels Climate sky climatescience energytransition climateaction ClimateCrisis warm globalviews headlamp whisky climatemitigation Ruttecrisis climatecrisis
+
+ Mon, 17 May 2021 20:49:17 UT
-
sport
- billiard darts swim motorsport snooker locksport trailrunning marathon hockey bouldering diving baseball Millwall mma mammal sailing athletics nook dumpsterdiving sportsball skating skiing sport climbing football combatsports
+ billiard darts swim motorsport snooker locksport swimming trailrunning marathon hockey transportation bouldering diving baseball Millwall mma mammal sailing athletics nook dumpsterdiving sportsball skating skiing sport climbing football combatsports
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
events
- neverforget TuesdayVibe award daffodilday OONIbday waybackwednesday thursdayvibes fridayfilm sun IndigenousPeoplesDay5 notifications solo throwbackthursday valentinesday adventskalender live Day deepthoughts thingaday screenshotsaturday warmingup thursdaythoughts fridays hackathons thursdaymorning Gesundheitskrise throwback RomaDay assweek animalsweatersunday TooMuchScreenTime beethoven250thbirthday valentine humanrightsday followfriday wednesdaythought afediversechristmas whydopeopledoshitlikethis festivals wednesdaymotivation early MayDay2021 IllustrationDay cccamp19 coding lovewhereyoulive screenshot PostLikeYouThinkACrabWouldSunday showerthoughts BIJ1 worldpenguinday animal ScreenshotSaturday beethoven anarchymonday Verkiezingsfestival FreeAssangeYesterday 100DaysToOffload hackathon ff holiday LURKbirthday punday ipv4flagday christmas livecoding weeknotes LINMOBlive week FlashFictionFriday mothersday koningsdag concert festival FridayFolklore screenshottuesday animals VerkiezingsfestivalBIJ1 fujifilmxt2 kdenlive dontstarve onthisday GlobalMayDay2021 insideoutsockday livestream whiskerswednesday BowieDay morningcrew theskytoday InternationalAsexualityDay tzag TinyTuesday FridaysForFuture sunday Koning weekendvibes screenshotsunday showerthought koningshuis cree VerseThursday liverpool waitangiday adayinthelife goodmorning Caturday day InternationalCheetahDay flatfuckfriday RabbitRoadTrip2021 interestingtimes sideprojectsunday birthday sixonsaturday supdate StPatricksDay2021 koningsdag2021 wordoftheday christmaslights nationallibraryweek meetup FathersDay kidsthesedays
+ neverforget TuesdayVibe award daffodilday OONIbday waybackwednesday thursdayvibes fridayfilm thursdaythought sun IndigenousPeoplesDay5 notifications solo throwbackthursday valentinesday adventskalender live dos Day deepthoughts thingaday idahobit screenshotsaturday warmingup thursdaythoughts fridays ipv hackathons thursdaymorning Gesundheitskrise throwback RomaDay assweek animalsweatersunday justwatched TooMuchScreenTime beethoven250thbirthday valentine humanrightsday followfriday wednesdaythought afediversechristmas whydopeopledoshitlikethis festivals wednesdaymotivation early MayDay2021 SwissOvershootDay IllustrationDay cccamp19 coding lovewhereyoulive screenshot PostLikeYouThinkACrabWouldSunday showerthoughts BIJ1 worldpenguinday animal ScreenshotSaturday beethoven anarchymonday emissions Verkiezingsfestival bundesnetzagentur FreeAssangeYesterday 100DaysToOffload hackathon ff kids holiday LURKbirthday punday ipv4flagday christmas livecoding verfassungsschutz weeknotes LINMOBlive week FlashFictionFriday mothersday koningsdag concert festival FridayFolklore screenshottuesday animals VerkiezingsfestivalBIJ1 towertuesday fujifilmxt2 Nakbaday kdenlive dontstarve onthisday GlobalMayDay2021 insideoutsockday livestream whiskerswednesday BowieDay morningcrew theskytoday InternationalAsexualityDay tzag TinyTuesday FridaysForFuture sunday Koning weekendvibes screenshotsunday showerthought library koningshuis cree VerseThursday liverpool waitangiday adayinthelife goodmorning Caturday day InternationalCheetahDay flatfuckfriday ItchCreatorDay kiss iss RabbitRoadTrip2021 interestingtimes sideprojectsunday birthday sixonsaturday supdate StPatricksDay2021 koningsdag2021 wordoftheday christmaslights nationallibraryweek meetup FathersDay sex kidsthesedays
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
politics
- hate conspiracytheory TakeOurPowerBack redessociais trump Anarchy cia socialjustice neoliberalisme workerowned alwaysantifascist sabotage qtibpoc VivotecniaCrueldadAnimal community systemicracism wageslavery immigration dissent liberation laws fascism farmersrprotest techtuesday skyofmywindow techthursday aws freedomofspeech anarchist prochoice freeexpression anticapitalist RacialHealing fascisme humanrights Anarchisme crime leftists Socialism ukpol FreeKeithLamar Antifascisme copwatch capitalismkills petition BorisJohnson meteorología independant freedom techtalk bikesforrefugees techdirt ontologicalanarchy techsit union abolitionnow anarchism DefundThePolice earthship repression legaltech technews Jurastil meto legal meeting polizeigewalt dannenröderwald smalltech police nzpolitics greenhousegas antifascists oilwars kommunismus censored rightorepair control bjp ThirdRunway multi seaslug maidsafe testing hierarchy chehalisrivermutualaidnetwork election republicans opinie diversity solidarity techwear communitycontrol hypocrits slavery sociaalDarwinisme metoo refugeeswelcome Coronariots seashepherd sky_of_my_window mybodymychoice generalstrike fuckBiden call2power neoliberal antipolitics charity abolition digitalfreedom transrightsarehumanrights ScottishElections2021 mayday unionyes again hatespeech fascists LateStageOfCapitalism earth stopchasseacourre solawi ciencia smashturkishfascism afropessimism antivax Electricians burntheprisons qt trumpism cyberlaw bossnapping peerproduction corporations iww pushbacksareillegal til labor commons choice feelthefreedom Riot corporatewatch postcapitalism smalltechnology wageslave uspol frontex communism mutualaidpdx RemoveThePolice makecapitalismhistory abolishpolice nationalisme oist Immigration competition biometric neoliberalism NeverTrustSimone socialecology wald whistleblower wroclawskierewolucjonistki MutualAid capitalism technology test prisons feministhackmeetings wealth supremecourt conspiracytheories corporatecrime DirectAction communist daretocare KeirStarmer NoMoreEmptyPromises censor helmet refugeesgr taoteching technopolice anarchismus politiikka kapitalisme retrotechnology housing decriminalization politics WarCommentary inclusivity gravimetry publicknowledge government neocities HeroesResist greendatacenter SocialDarwinism brightgreen poc anarchisme wayfire feminist DominicCummings nzpol TyskySour: Bookchin informationtechnology ClemencyNow Inauguration2021 arran Revolutionary techthoughts brexit tw totalitarianism privatisation TyskySour Labour nonprofitindustrialcomplex death LabourLeaks riots freethemall bolsonarogenocida green SocialJustice neoliberaal corporateStateTotalitarianism BAME decolonizeyourmind alternative privilege antikapitalisme firejail legalcounsel AbolishPrisonsAbolishPolice despotism earthovershootday palantir DecentraliseThePlanet anti surfaceworldblows ecofascism opentechnologyfund popularitycontest pdxmutualaid LhubTV SocietalChange facialrecognition cotech corruption florespondece hypocrisy anarchy fire colonization Feminism propaganda dcc greenit endsars celebratingfreedom Antillia corporateState decolonization pc digitalrights feminism freepress Lhub HightechProblems farm problem collaboration pentesting polizei neo democracy anarchistki Govts BelarusProtests xp powerpolitics 18Source hungerstrike censorshipBook radicaltech saytheirnames witchesagainstwhitesupremacy gulag digitalmarketsact socialist conspiracy anarchistbookclub redandanarchistskinheads hostileenvironment corporate osint radicaldemocracy PritiPatel oiseau surveillance latestagecapitalism bos racist cancelculture dec MexicanRevolution elections greatgreenwall RussellMaroonShoatz LhubSocial methods Flatseal commonspub sea white governance prisoners warrants policebrutality techshit earthday borisjohnson Anarchist deepspeech press routerfreedom Anarchism mutuality whitehouse haltandcatchfire freedomofexpression censorship CancelCulture decolonize HanauWarKeinEinzelfall druglawreform keinmenschistillegal emmet fascisten decenterwhiteness blackandwhite Biden ChineseAppBan cooperative trespass modi kdecommunity antifa law chip deathtoamerica manipulation ParticipatoryCultureFoundation firetotheprisons consumer PlanetarySocial britpol financial gravimetrie Capitalism surveillancecapitalism leftist Revolution ukpolitics mdcommunity glenngreenwald JeremyCorbyn blacklivesmatter freedomofthepress academicfreedom FreeAlabamaMovement Anarchismus strike mononeon rentstrike evergreen otd dsa informationstechnik lawandorder migration power oiseaux neoist capitalismenumérique mutualaid capital cymru multipleexposure humanetechnology AbolishPrison solidaritynotcharity anarchists fascist righttochoice socialcoop vim apocalypseworld DefundSurveillanceCapitalism feministserver platformcapitalism decolonizeconservation anarchistprisoners whistleblowers polizeiproblem notallmen UniversalBasicServices fuckcapitalism speech uselection IDPol Antifa deathtofascism lesanarchistes Slavetrade met democracia antitrespass drugtesting consumerism greenwashing ourstreets reform MeToo extremist freespeech anticonsumerism kapital neorodiversiteit refugees riot BernieSanders acab ecology yesminister antifascist SurveillanceCapitalism antifascism GlobalCapitalism whitepaper pdx freewestpapua eris hambacherwald powstaniewgetciewarszawskim sunnytech expression feudalism espressif tech
+ hate conspiracytheory TakeOurPowerBack redessociais solidarität trump Anarchy association cia socialjustice neoliberalisme eee workerowned alwaysantifascist sabotage qtibpoc VivotecniaCrueldadAnimal solidarityeconomy community systemicracism wageslavery immigration liberal telemetry dissent liberation unions laws fascism farmersrprotest techtuesday skyofmywindow techthursday nooneisillegal aws freedomofspeech anarchist prochoice freeexpression anticapitalist RacialHealing fascisme humanrights Anarchisme crime leftists Socialism ukpol FreeKeithLamar Antifascisme copwatch capitalismkills homeless menschenrecht petition BorisJohnson meteorología independant antifaschismus freedom techtalk bikesforrefugees housingcrisis techdirt ontologicalanarchy labourabolition techsit union abolitionnow anarchism DefundThePolice nazis earthship repression legaltech technews Jurastil meto legal meeting polizeigewalt dannenröderwald smalltech FediAntifa police nzpolitics greenhousegas antifascists oilwars kommunismus censored postttruth rightorepair control nuclear bjp ThirdRunway multi seaslug maidsafe testing nazisme hierarchy chehalisrivermutualaidnetwork vat ImmigrationEnforcement election republicans opinie diversity solidarity techwear communitycontrol hypocrits slavery sociaalDarwinisme metoo refugeeswelcome Coronariots seashepherd sky_of_my_window mybodymychoice generalstrike fuckBiden call2power neoliberal antipolitics charity abolition digitalfreedom transrightsarehumanrights ScottishElections2021 mayday unionyes again hatespeech fascists antropoceno LateStageOfCapitalism earth stopchasseacourre solawi ciencia smashturkishfascism afropessimism antivax Electricians burntheprisons qt trumpism cyberlaw bossnapping peerproduction corporations iww pushbacksareillegal til labor intersectional commons choice feelthefreedom Riot corporatewatch postcapitalism intersectionalfeminism smalltechnology wageslave uspol frontex communism mutualaidpdx RemoveThePolice makecapitalismhistory abolishpolice nationalisme oist anarchisten Immigration competition biometric neoliberalism NeverTrustSimone socialecology wald whistleblower wroclawskierewolucjonistki MutualAid capitalism technology test prisons feministhackmeetings wealth supremecourt conspiracytheories corporatecrime DirectAction communist daretocare KeirStarmer NoMoreEmptyPromises censor decrecimiento helmet refugeesgr taoteching technopolice anarchismus politiikka kapitalisme retrotechnology ZwartFront housing decriminalization politics WarCommentary inclusivity gravimetry publicknowledge government neocities greendatacenter SocialDarwinism brightgreen poc anarchisme wayfire feminist DominicCummings nzpol TyskySour: Bookchin informationtechnology ClemencyNow Inauguration2021 arran Revolutionary techthoughts brexit anarchistaction tw totalitarianism localelections privatisation TyskySour Labour democraciasindical nonprofitindustrialcomplex death LabourLeaks riots freethemall bolsonarogenocida green SocialJustice neoliberaal corporateStateTotalitarianism labour BAME decolonizeyourmind alternative LowtechSolutions privilege antikapitalisme firejail legalcounsel AbolishPrisonsAbolishPolice despotism earthovershootday palantir DecentraliseThePlanet anti surfaceworldblows ecofascism opentechnologyfund nuclearpower popularitycontest usestandardpowerjacksforfucksake pdxmutualaid PoliceTenSeven LhubTV SocietalChange facialrecognition cotech corruption florespondece hypocrisy anarchy fire colonization Feminism propaganda dcc greenit endsars celebratingfreedom Antillia corporateState decolonization pc digitalrights feminism freepress Lhub HightechProblems farm problem collaboration pentesting polizei neo democracy anarchistki Govts BelarusProtests xp powerpolitics 18Source hungerstrike censorshipBook radicaltech saytheirnames witchesagainstwhitesupremacy gulag digitalmarketsact yes socialist conspiracy anarchistbookclub redandanarchistskinheads hostileenvironment corporate osint radicaldemocracy PritiPatel oiseau surveillance latestagecapitalism bos racist cancelculture dec AmbLastillaAlCor nonazis MexicanRevolution elections greatgreenwall RussellMaroonShoatz LhubSocial logitech methods Flatseal commonspub warcrimes sea white governance waldstattasphalt prisoners warrants policebrutality techshit earthday antirepression capitalismo borisjohnson Anarchist deepspeech body press routerfreedom Anarchism mutuality whitehouse haltandcatchfire freedomofexpression censorship communities CancelCulture decolonize HanauWarKeinEinzelfall druglawreform keinmenschistillegal emmet fascisten decenterwhiteness blackandwhite Biden FossilFreePolitics ChineseAppBan cooperative trespass modi kdecommunity antifa alternativen law chip deathtoamerica manipulation ParticipatoryCultureFoundation firetotheprisons consumer solidaritaet PlanetarySocial britpol financial gravimetrie Capitalism surveillancecapitalism leftist greenland Revolution ukpolitics greenparty mdcommunity glenngreenwald JeremyCorbyn blacklivesmatter freedomofthepress academicfreedom HeinsbergStudie FreeAlabamaMovement Anarchismus strike mononeon rentstrike evergreen otd dsa informationstechnik lawandorder migration power oiseaux techmess neoist capitalismenumérique mutualaid capital cymru multipleexposure humanetechnology AbolishPrison solidaritynotcharity anarchists fascist righttochoice InformationAsymmetry socialcoop vim apocalypseworld DefundSurveillanceCapitalism feministserver platformcapitalism decolonizeconservation anarchistprisoners whistleblowers polizeiproblem notallmen hf UniversalBasicServices fuckcapitalism speech uselection IDPol Antifa deathtofascism lesanarchistes Slavetrade met democracia antitrespass drugtesting consumerism greenwashing ourstreets reform MeToo extremist freespeech anticonsumerism kapital neorodiversiteit refugees riot BernieSanders acab ecology yesminister antifascist SurveillanceCapitalism antifascism GlobalCapitalism Politics homeoffice whitepaper pdx freewestpapua eris hambacherwald justice powstaniewgetciewarszawskim sunnytech expression feudalism espressif legalmatters academic tech
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
gafam
- zuckerberg caringissharing ads apple antitrust SpringerEnteignen deletewhatsapp GoogleDown AppleSearch Floc bankruptBezos googlesearch mycologists bringBunysBack youtube Goggle twitterkurds chromebook fuckfacebook headset ffs AmazonMeansCops facebook 100heads amazon googlevoracle dystopia microsoftgithub farcebook myco boycottinstagram FlocOff deletewhatsappday amazonring Gafam googleplus soldering GoogleForms haggis degooglisation linkedin siri Facebook LeiharbeitAbschaffen advertising monopolies googleanalytics adtech fuckgoogle plottertwitter microsoft deletechrome dtm HeadscarfBan twitter skype azure chrome googledoodles hildebrandt corporateGiant uitkeringen FlocOffGoogle sidewalk nogafam youtubedl degoogled Google youtubers google stemverklaring gis walledgarden GAFCAM dt GooglevsOracle dotcoms deleteyoutube datafarms Instagram walledgardens agistri appleevent offseting appleii fascistbook FuckGoogle degoogle boringdystopia fuschia appleiie deleteinstagram ungoogled ring stopgoogle affordances googledown gafam inspiring killedbygoogle fuckoffgoogle deletefacebook gradschool GoogleIsBad fuckoffgoogleandco office365 lordoftherings turingpi instagram FlocBloc playstore synergistic bigtech boycottamazon whatsapp mytwitteranniversary deleteamazon bluesky
+ zuckerberg caringissharing ads apple antitrust SpringerEnteignen deletewhatsapp advertisingandmarketing GoogleDown AppleSearch Floc bankruptBezos googlesearch mycologists bringBunysBack youtube Goggle twitterkurds banadvertising chromebook fuckfacebook headset arcgis ffs AmazonMeansCops facebook 100heads amazon googlevoracle dystopia microsoftgithub farcebook myco boycottinstagram FlocOff amazonprime deletewhatsappday amazonring Gafam googleplus soldering GoogleForms HaringeyAnti lobbyregister degooglisation linkedin siri Facebook LeiharbeitAbschaffen advertising monopolies googleanalytics ausländerzentralregister adtech fuckgoogle plottertwitter failbook kadse microsoft deletechrome dtm HeadscarfBan twitter skype azure chrome googledoodles hildebrandt corporateGiant Tracking uitkeringen FlocOffGoogle sidewalk nogafam youtubedl degoogled Google youtubers google stemverklaring gis walledgarden GAFCAM dt GooglevsOracle dotcoms deleteyoutube datafarms Instagram walledgardens agistri appleevent offseting appleii facebookoversightboard fascistbook FuckGoogle degoogle boringdystopia fuschia ohneamazon appleiie deleteinstagram ungoogled ring stopgoogle affordances googledown gafam inspiring killedbygoogle fuckoffgoogle dance deletefacebook gradschool fakebook GoogleIsBad fuckoffgoogleandco office365 lordoftherings turingpi instagram FlocBloc playstore synergistic bigtech boycottamazon whatsapp mytwitteranniversary deleteamazon bluesky
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
people
- Melissa harold paul Zachary markdown JusticiaParaVictoria danielle dylan scott Barbara Kenneth theresa Denise FrankLeech Jesse Adam justin elinorostrom katherine judith Karen Patricia russell Metalang99 juan diane Rebecca donna olivia peter troy William denise Betty evelyn Christina brittany Jennifer Gregory Wayne Andrychów ethan Ralph Peter ecc americalatina jacobites jean laura betty nathan margaret alexanderlukashenko Bryan Virginia Jose Rose eric james david Joshua christine haaland Billy CapitolRiot natalie daniel Jonathan Michael susan George johnny bookmark Lauren christina Amy kevin Natalie kenneth noahkathryn Lawrence aaron gregory Amber alexa Robert Edward Patrick Rachel willemalexander bruce Forms dennis LegalCannabis Kayla frank Diane Donna Jack Paul Janice Brenda alexis timothy vincent Alice sarah amy Daniel jeff charlotte carolyn Emma Kyle Sean emily linda Olivia Eugene Donald janet ryan stdavids RichardDWolff bryan Hannah anna doctorow Catherine Alexander Christopher bob doris Anthony Jean diana Beverly frances Sarah margaretthatcher Jordan Anna Ethan Amanda jeremy donald mark matthew julie stephanie Jerry Diana David Linda adam richard henry RoyalFamily Isabella elizabeth steven jessica Walter jeffrey Kevin Justin grace PeterGelderloos brandon mary jamesbaldwin sharon nicholas Benjamin GeorgeFloyd amanda Emily Ruth heather stephenlawrence albert julianassange Julie nancy stephen Cannabis James Megan Raymond eugenetica michelle Nancy Frances Henry andrew Jessica julia marketing Dorothy LoganGrendel Jason Charles JonathanMorris Danielle Brandon jose noamchomsky virginia beverly obituary ronald Bob madison Helen MarkoBogoievski Jeff helen Sophia larry dorothy Dennis monbiot Nicholas Frank jack Stephen Janet ScottRosenberg Alexis Pamela Jacqueline Dylan roy brenda jesse Roger Jeffrey Brittany Shirley putkevinback Nathan christopher Carol Susan jason Philip Logan sandra jacob rose isabella Cynthia Joan jackieweaver aldoushuxley Maria martha Randy SarahEverard carl kyle karen raymond alice jerry carol RussellBrown Victoria Steven Douglas Lisa Julia joshua jacqueline Ashley assange eugene Bruce Albert Austin thomas Evelyn Gary Scott kimberly lawrence jennifer Russell austin logan Laura Chris Teresa Aaron Keith brian marktwain maryanning LamySafari maria Joseph Andrew Vincent Katherine Joyce lauren Ryan amber davidgraeber alan ralph princephilip megan Kathleen sophia Cheryl abigail cynthia john richardstallman Alan Debra QuickSummary arthurgloria mariadb Christine marilyn anthony chris Elizabeth sean Louis Larry christian deborah billy Abigail joesara AndreaBeste keith Jeremy markkennedy zachary ruth Grace teresa Doris benjamin Willie george barbara scottish Charlotte philip DaveCunliffe randy Margaret Heather Bradley Jacob shirley pamela Matthew Nicole joan judy Kelly savannah Brian melissa Sandra stallman markstone joseph andrea shamelessselfplug Joe Sara robert aaronswartz Bobby emma willie william angela SachaChua samuel Postmarketos tyler Thomas John kroger patricia ashley bobby roses kelly fuckamerica ThomasCahill hannah Carolyn Ann CrimsonRosella gary wayne Marilyn Deborah rms Sharon gare Mary Samuel BreonnaTaylor Mark walter rebecca helendixon Madison Juan lisa cheryl janice Christian gerald Timothy roger edward bradley Gerald patrickrachel framalang Kimberly Gabriel Marie EmmaFerris PeterHoffmann louis kathleen Arthur Gloria terry royals freejeremy Richard jonathan Harold JuliaKitten Roy samantha Carl chalice Eric relationships visuallyimpaired nicole Andrea Judith Terry Stephanie Johnny Angela Noah Kathryn Ronald AskVanta Michelle Theresa gabrielmarie Samantha Judy michael charles Tyler amaryllis DouglasPFry kayla catherinealexander Martha debra JohnMichaelGreer joyce
+ Melissa harold paul Zachary JusticiaParaVictoria danielle dylan scott Barbara Kenneth theresa Denise FrankLeech Jesse Adam justin elinorostrom katherine judith Karen Patricia russell Metalang99 juan diane Rebecca donna LouisRossmann olivia peter troy William denise Betty evelyn Christina brittany Jennifer Gregory Wayne Andrychów ethan Ralph Peter ecc americalatina jacobites jean laura betty nathan margaret alexanderlukashenko Bryan Virginia Jose Rose eric james david Joshua christine haaland Billy CapitolRiot natalie daniel Jonathan Michael susan George johnny bookmark MichaelWood Lauren christina Amy kevin Natalie kenneth noahkathryn Lawrence aaron gregory Amber alexa Robert Edward Patrick Rachel willemalexander bruce Forms dennis LegalCannabis Kayla frank Diane Donna Jack Paul Janice Brenda alexis timothy vincent Alice sarah amy Daniel RobertKMerton jeff charlotte carolyn Emma Kyle Sean emily linda Olivia Eugene Donald janet ryan Bookmarker stdavids RichardDWolff bryan Hannah anna doctorow Catherine Alexander Christopher bob doris Anthony Jean diana Beverly frances Sarah margaretthatcher Jordan JensStuhldreier Anna Ethan Amanda jeremy donald mark matthew julie stephanie Jerry Diana David Linda adam richard henry RoyalFamily Isabella elizabeth steven jessica Walter jeffrey Kevin Justin grace martinluther PeterGelderloos brandon mary anwarshaikh jamesbaldwin sharon nicholas Benjamin GeorgeFloyd amanda Emily Ruth heather stephenlawrence albert julianassange Julie nancy stephen Cannabis James Megan Raymond eugenetica michelle Nancy Frances Henry andrew kevinRuddCoup Jessica julia marketing Dorothy LoganGrendel Jason Charles JonathanMorris Danielle Brandon jose noamchomsky virginia beverly obituary ronald Bob madison Helen MarkoBogoievski Jeff helen Sophia larry dorothy Dennis monbiot Nicholas Frank jack Stephen Janet ScottRosenberg Alexis Pamela Jacqueline Dylan roy brenda jesse Roger Jeffrey Brittany Shirley putkevinback Nathan christopher Carol Susan jason Philip Logan sandra jacob rose isabella Cynthia Joan jackieweaver aldoushuxley Maria martha Randy SarahEverard carl kyle karen raymond alice jerry carol RussellBrown Victoria Steven Douglas Lisa Julia joshua jacqueline Ashley assange eugene Bruce Albert Austin thomas Evelyn Gary Scott kimberly lawrence jennifer Russell austin logan Laura Chris Teresa Aaron Keith brian marktwain maryanning LamySafari maria Joseph Andrew Vincent Katherine Joyce lauren Ryan amber davidgraeber alan ralph princephilip megan Kathleen sophia Cheryl abigail cynthia john richardstallman Alan Debra QuickSummary arthurgloria mariadb Christine marilyn anthony chris Berichte Elizabeth sean Louis Larry christian deborah billy Abigail joesara AndreaBeste keith Jeremy markkennedy zachary ruth Grace teresa Doris benjamin Willie george barbara scottish Charlotte philip DaveCunliffe randy Margaret Heather Bradley Jacob shirley pamela Matthew Nicole joan judy Kelly savannah Brian melissa Sandra stallman markstone joseph andrea shamelessselfplug Joe Sara robert aaronswartz Bobby emma willie william angela rich SachaChua samuel Postmarketos tyler Thomas John kroger patricia ashley bobby roses kelly fuckamerica ThomasCahill hannah Carolyn Ann CrimsonRosella gary wayne Marilyn Deborah rms Sharon gare Mary frankfurt Samuel BreonnaTaylor Mark walter rebecca helendixon Madison Juan lisa cheryl janice jeffreyepstein Christian gerald Timothy roger edward bradley Gerald patrickrachel framalang Kimberly Gabriel Marie EmmaFerris PeterHoffmann louis kathleen Arthur Gloria terry royals freejeremy Richard jonathan Harold cigarettes JuliaKitten Roy samantha DavidSeymour Carl chalice Eric relationships visuallyimpaired nicole Andrea Judith Terry Stephanie Johnny Angela Noah Kathryn Ronald AskVanta Michelle Theresa gabrielmarie Samantha Judy michael charles Tyler amaryllis DouglasPFry kayla catherinealexander Martha debra JohnMichaelGreer joyce
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
activitypub
- followerpower FederatedSocialMedia Fediverse kazarma activitypub activertypub tootfic pleroma losttoot Rss2Fedi PeerTube devices gofed getfedihired collaborate pixelfedlabs hometown homelab fediblock fediverso lazyfedi federation instances fedilab Wallabag blocks pixiv mastotips toot fedilabfeature mastodev fediversetv pixel mastodontips catsofthefediverse mastotip wallaby MastoDev friendica mastodontip hiveway mastodonart mast Mosstodon megapixels Adblocker DeveloperExperience askthefediverse misskey collaboraoffice activitypub_conf BlackFedi joinmastodon siskin socialhub followers fediart ublockorigin blocking Metatext SocialMediaReimagined Pixelfed contentwarnings pixelfed labournettv fediverseplaysjackbox mapeocolaborativo fedihive greeninstances fedidb block FediMemories Feditip devs fablab fediverseparty collabathon Dev Fediseminar onlyfedi socialcg teamtoot sponsorblock tusky labour contentwarning peertubers imagedescription joinpeertube feditips tootcat fedizens Mastodon following epicyon afediversechat peertubeadmin leylableibt fediversefleamarket mastomagic YearOfTheFediverse dev mastodob fediadmin pleaseboost mastodonhost mond pixeldev timeline socialmedia tips wedistribute fosstodon instanceblock softwaredevelopment freetoot mastodonmonday fedihelp fediWhen collaborative isolategab greenmastodon fedireads networkTimeline PeertubeMastodonHost boost AskFediverse Bookwyrm federated socialhome greenfediverse microblocks collabora fedivers MastodonMondays fediverse imagedescriptions mastobikes gbadev lemmy Fedilab bunsenlabs mastoadmin smithereen hackerstown uadblock blabber FediverseFutures latenighttoots mastodon developingcountries PixelfedDev fedi fediversefriday fediplay widevine peertube fieldlabs mastomind lab BlackMastadon fedeproxy lazyfediverse mobilizon lazy gemifedi
+ followerpower FederatedSocialMedia Fediverse kazarma activitypub activertypub tootfic fedivision pleroma losttoot Rss2Fedi PeerTube CreativeToots devices gofed getfedihired collaborate pixelfedlabs hometown homelab RedactionWeb fediblock fediverso lazyfedi federation instances fedilab Wallabag blocks pixiv mastotips sammelabschiebung toot fedilabfeature mastodev fediversetv pixel Ktistec mastodontips catsofthefediverse mastotip wallaby MastoDev friendica mastodontip ap_c2s hiveway mastodonart mast Mosstodon Adblocker DeveloperExperience askthefediverse misskey collaboraoffice activitypub_conf BlackFedi joinmastodon siskin socialhub followers fediart ublockorigin blocking Metatext SocialMediaReimagined Pixelfed contentwarnings pixelfed labournettv fediverseplaysjackbox mapeocolaborativo fedihive greeninstances fedidb block FediMemories Feditip devs fablab fediverseparty collabathon Dev Fediseminar onlyfedi socialcg teamtoot sponsorblock tusky retoot contentwarning peertubers imagedescription joinpeertube feditips tootcat fedizens Mastodon following epicyon afediversechat andstatus peertubeadmin leylableibt fediversefleamarket mastomagic YearOfTheFediverse mastodob fediadmin pleaseboost mastodonhost mond pixeldev timeline socialmedia tips wedistribute fedivisionCollab fosstodon instanceblock softwaredevelopment freetoot mastodonmonday fedihelp fediWhen asta collaborative isolategab greenmastodon fedireads networkTimeline PeertubeMastodonHost boost AskFediverse Bookwyrm federated socialhome greenfediverse microblocks collabora fedivers MastodonMondays fediverse imagedescriptions mastobikes gbadev lemmy Fedilab bunsenlabs mastoadmin smithereen hackerstown uadblock c2s blabber FediverseFutures latenighttoots mastodon pcmasterrace developingcountries PixelfedDev fedi fediversefriday fediplay activity widevine peertube fieldlabs mastomind lab BlackMastadon fedeproxy boosten tootorial lazyfediverse mobilizon lazy devuan gemifedi
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
internet
- datasette linkeddata selfsufficiency decentralised immersiveweb pep dotcons i2p sceptic earlyinternet Clubhouse spam firefox redecentralize NYCMesh decentral wikipedia rtmp dataprotection decentralization inclusiónsocial decentralize w3c dotConism DutchPolitics internetaccess agnostic geminispace selfhosted piratenpartij DarkPatternsFTC metafilter maille meta torrent mailab geocaching MollyBrown mailfence k9mail nylasmail data socialism basemap sitejs anticolonial VerkehrsswendeJetzt worldbusterssocialclub publicserviceinternet networks online openddata centralisation internetarchaeology WordPress darkages self saferinternetday contentmoderation distributed OperationPanopticon mydata webhosting decentralizedweb mailman natto p2pleft socialdistancing router protection rne dataretention speedtest bigdata routeros greenhosting selfhosting forkawesome communityhosting CriminalJusticeBill brave icann selfsustaining hosting mailart discourse weblate PeerToPeer wikis dns stripe service openstandards nojs ejabberd oauth Anticon tic foxes hypercore CDNsAreEvil meshtastic protonmail TubEdu standards yourdataisyourdata internetfreedom onlineWhiteboard gemini antarctic zeit webui InternetCrimeFamily wlan boilemMashEmStickEmInAStew internetBanking Nature SmallWeb fedwiki ircd coopcloud cw internetshutdown democratic datadetox clearnet cdn liberapay brahmaputra distributedcoop xmpp semanticweb identicurse socialnetwork Disarchive selfie colonialism website SaferInternetDay content splinternet participation highavailability webstandards mapa groenlinks domains ntp centralized cloudfront socialnetworks metadata wikileaks disconnect Meme database socialanxiety proton disco web3 cloudfirewall TLSmastery descentralizare icmp videocast governement jabber cleanuptheweb webbrowsers webhook communications decentralized userdata wiki cloudron bsi browserextensions ssb darknet cookies Qute darkweb netcat webInstaller map Reddit archiv server browser cloudy IPFS p2p social antisocial tiddlywiki www missioncritical corne fortinet opendata ilovewikipedia web WebsiteStatus netshutdowns alttext twitch im darkmode 9front decentralise att jabberspam theserverroom Watomatic datafree domain OpenStreetMap closedweb geminiprotocol statistics BurnermailIO irc pirate plaintext datacracy filesharing rss openstreetmap ipns mozilla twitchbannedrevision voicemail mapbox Nyxt legacyInternet yacy webrtc databases symbiotic debloattheweb crosspost jmap mail i2pd ipfs internetradio bravenewworld browsers wikidata selfpub decentralizeit ballpointpen puredata netscape mixcloud DecolonizeTheInternet gmail openculture letthenetwork cyberspace SwitchToXmpp messaging selfies offthegrid enxeñeríasocial cloud ddg snailmail cleanup internet moderation decentralisation webinar metaverse socialcooling Seattle fox ssbroom pihole serverMeddling missingmaps bravesearch sneakernet NatureNeedsJustice Nextcloud internetarchive dataintegration dweb kmail js metatext adblock dark captcha beakerbrowser openweb NetShutdown enigmail libervia onlineharms gooddata mailinglist kernelupgrade dot Internet descentralizarea thepiratebay internetshutdowns fixtheweb lazyweb atom socialweb colonial firewall Politics socialists ebay mozillahubs instantmessaging publicservice interoperabilitate SolidProject webmention Justice4MohamudHassan cloudflare
+ datasette linkeddata markdown selfsufficiency decentralised immersiveweb pep i2p sceptic earlyinternet Clubhouse spam firefox redecentralize NYCMesh decentral Burocratic wikipedia maps rtmp dataprotection decentralization inclusiónsocial decentralize w3c dotConism offlineimap DutchPolitics internetaccess agnostic geminispace archivists gaza selfhosted piratenpartij videohosting DarkPatternsFTC metafilter maille meta torrent mailab geocaching MollyBrown mailfence tox k9mail nylasmail data socialism basemap sitejs anticolonial VerkehrsswendeJetzt worldbusterssocialclub publicserviceinternet networks online openddata centralisation internetarchaeology WordPress darkages hiddenServices self saferinternetday selfhost text contentmoderation distributed OperationPanopticon mydata webhosting decentralizedweb mailman natto p2pleft socialdistancing router protection rne dataretention speedtest bigdata routeros internetofthings greenhosting selfhosting forkawesome communityhosting CriminalJusticeBill brave icann selfsustaining hosting mailart discourse weblate PeerToPeer wikis dns stripe service openstandards nojs ejabberd freifunk oauth Anticon tic foxes hypercore CDNsAreEvil meshtastic protonmail TubEdu standards StuffCircuit yourdataisyourdata internetfreedom onlineWhiteboard gemini antarctic zeit webui InternetCrimeFamily wlan boilemMashEmStickEmInAStew internetBanking SmallWeb fedwiki ircd coopcloud cw internetshutdown democratic datadetox clearnet cdn liberapay pinterest brahmaputra distributedcoop xmpp semanticweb identicurse socialnetwork Disarchive selfie colonialism anticolonialism website SaferInternetDay content splinternet participation highavailability webstandards mapa groenlinks domains ntp centralized cloudfront socialnetworks metadata wikileaks disconnect Meme database socialanxiety proton disco web3 cloudfirewall TLSmastery descentralizare icmp videocast governement jabber cleanuptheweb webbrowsers webhook communications decentralized userdata selflove wiki cloudron bsi browserextensions ssb darknet cookies Qute darkweb netcat webInstaller uberspace map Reddit archiv server browser cloudy IPFS p2p social antisocial tiddlywiki www missioncritical corne fortinet Pluralistic opendata ilovewikipedia web WebsiteStatus ownyourdata netshutdowns alttext twitch im darkmode 9front decentralise att jabberspam theserverroom Watomatic datafree domain selfemployed OpenStreetMap RudolfBerner geminiprotocol statistics BurnermailIO irc pirate plaintext datacracy filesharing rss openstreetmap ipns mozilla twitchbannedrevision voicemail gazaunderattack mapbox Nyxt legacyInternet yacy webrtc databases symbiotic debloattheweb crosspost jmap mail tinycircuits i2pd ipfs internetradio bravenewworld browsers wikidata selfpub decentralizeit ballpointpen puredata netscape mixcloud DecolonizeTheInternet gmail openculture letthenetwork cyberspace SwitchToXmpp messaging selfies offthegrid enxeñeríasocial cloud ddg snailmail cleanup internet moderation decentralisation webinar metaverse socialcooling Seattle fox ssbroom pihole serverMeddling missingmaps bravesearch sneakernet NatureNeedsJustice Nextcloud internetarchive dataintegration dweb kmail js metatext adblock dark captcha BlackHatSEO beakerbrowser openweb soulseek NetShutdown enigmail libervia onlineharms gooddata mailinglist kernelupgrade dot Internet descentralizarea thepiratebay internetshutdowns fixtheweb contentid lazyweb atom socialweb colonial AtomPub firewall shutdown socialists ebay mozillahubs instantmessaging publicservice interoperabilitate SolidProject webmention Justice4MohamudHassan cloudflare
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
programming
- Easer cpp digitalpreservation programming css rubyonrails objects Python system digitaldivide digitalisierung FrancisBacon2020 dracut gitea mixers webdev proofing developerexperience gui digital release ada schutzstreifen pypi workaround proofofwork node websocket proofofstake ecosystem rustlang ocaml program DigitalSouveräneSchule request_reaction sqlite guile nim uptronics hypocritcal profiles DeutschlandDigitalSicherBSI typescript forums vscode gitsyncmurder musicforhackers publiccode computerscience hackers guidelines vieprivée adventofcode cgit solidarność CommonJS scripting warn digitalesouveränität DevelopmentBlog anime git proof sourcehut ui nocode solid nodejs systemchange trevornoah zinccoop tailwindcss terminalporn guix raku fedidev c script sourcecode publiekecode framaforms WendyLPatrick DigitalAutonomy grep django gmic zim sackthelot gitportal gitlab crusty decoder readability parrot relevance_P1Y Verkada react kingparrot Leiharbeit programmer trunk haskell OpenSourceHardware CodedBias codelyoko workstation guixhome Tarifvertrag esm penguin unicode development ursulakleguin gerrit frgmntscnr Fagradalsfjall github freecodecamp openrc tuskydev threema html5 algorithms PythonJob lisp digitaldefenders codeberg souveränität forge ursulaleguin pleaseshare HirsuteHippo resnetting frontenddevelopment animatedgif fourtwenty rakudev adaptation developers bug fortran libraries drivers animation freecode forgefed javascript fragment cpm code elisp JardínOpenSource commands patterns eq ECMAScriptModules html vintagecomputers rakulang portal terminal c99 SemillasOpenSource rust programminghumor lowcode request spiritbomb r dramasystem go forges digitalaudioworkstation esbuild golang clojurescript vintage ruby releaseday rustc contractpatch deceptionpatterns obsolescence_programmée computers developer darkpatterns racket sourceforge forum digitalprivacy bugreport mercurial openappecosystem python fontforge indiedev kabelfernsehen OpenSource Scheibenwischer
+ Easer cpp digitalpreservation programming css rubyonrails objects Python system digitaldivide digitalisierung FrancisBacon2020 dracut gitea mixers webdev proofing developerexperience seguridaddigital gui digital release ada schutzstreifen pypi workaround proofofwork node websocket proofofstake ecosystem rustlang systemwandel freenode ocaml program DigitalSouveräneSchule request_reaction sqlite guile nim uptronics hypocritcal profiles DeutschlandDigitalSicherBSI typescript forums vscode gitsyncmurder musicforhackers publiccode computerscience hackers guidelines vieprivée vala adventofcode cgit solidarność CommonJS scripting warn digitalesouveränität DevelopmentBlog anime git proof sourcehut ui nocode solid nodejs systemchange trevornoah zinccoop tailwindcss terminalporn guix js_of_ocaml raku fedidev c script sourcecode publiekecode framaforms WendyLPatrick DigitalAutonomy grep django gmic zim sackthelot amada gitportal gitlab crusty decoder readability parrot relevance_P1Y Verkada react kingparrot Leiharbeit programmer trunk haskell OpenSourceHardware CodedBias codelyoko workstation guixhome Tarifvertrag esm penguin unicode development ursulakleguin gerrit db frgmntscnr Fagradalsfjall dev github freecodecamp openrc tuskydev threema recoverourdigitalspace html5 algorithms PythonJob lisp digitaldefenders codeberg souveränität forge ursulaleguin pleaseshare HirsuteHippo resnetting frontenddevelopment animatedgif fourtwenty rakudev adaptation developers bug fortran libraries drivers animation printingsystems freecode forgefed javascript fragment cpm code elisp JardínOpenSource commands patterns eq ECMAScriptModules html codeofconduct vintagecomputers rakulang portal terminal c99 SemillasOpenSource rust programminghumor lowcode request spiritbomb r dramasystem go forges digitalaudioworkstation esbuild commonlisp golang clojurescript vintage ruby releaseday rustc contractpatch deceptionpatterns obsolescence_programmée computers developer darkpatterns racket sourceforge forum digitalprivacy bugreport mercurial adafruit openappecosystem python fontforge indiedev api kabelfernsehen OpenSource Scheibenwischer
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
art
- cherrytree oilpaint arttips mastoartist paperart activism CreativeToots theWorkshop Linke subresourceintegrity glitchart Art water ocart resource urban article penandink webcomics CommissionsOpen glassart martialarts watercolours artalley artvsartist2020 circulareconomy abstract artreference commission Earthquakes poe nomadbsd coloringpage dccomics inkscape blink artificalintelligence draw circuitsculpture ttip watercolor proceduralart resources poetesss memes ghibligif subpoena autisticartist barrigòtic art elinks sona animalart krita FreeColouringPage anthroart urbanart sigh queerart deviantart CircusInPlace communityresources pastel fantasyart drawings garten 20thcenturyillustration grafana daria artdeco adultcolouring source collective openstreeetmap cryptoart fantasy collage jordanlynngribbleart linksunten pro links CodeZwart thinkabout fanfic articles PartyPooperPost harmreductionart adhdmeme MastoArtHeader openra demoscene wallpaper generative political agriculture streetart coverart fountainpen stickers partners watercolour economy freeculture fiberart jet labyrinth edu MastoArt particl urbansketchers ParticlV3 creativetoots culture ganart opencl fiberarts polArt ink painting Leitartikel marten opencoop digitalart comic flyingonthewater sartre artwork mandala artificialintelligence b3d politicalcartoon blackart makingcomics glitch politicalprisoner wallpapers railway riso xkcd supportartists drawtober startinblox comics intelligence linkinbio mastoart urbanterror illustration artopencall Hinkley gnuimagemanipulationprogram os studioghibli 2MinuteSketch wireart cartoon oc AccidentalGraffiti eink OriginalCharacter farts poezio webcomic DigitalArt partnership oilpainting kickstarter furryart twinkle DisabledArtist unixstickers pink fursona afriquedusud comicsans inkjet generativeart VaccineApartheid sticker enbyart artbreeder 17maart fart videoart ivalice adultcoloring djmartinpowers arttherapy Cartudy fractal enby TattoosOfTheFediverse colouringpage worldwaterday NFTart signalstickers artschool digitalpainting intel artvsartist maart abstractart drawing sig circular sculpture artist pcbart meme cultureshipnames supertuxkart concretepoetry artwithopensource pinkwug VTMtober commissions pronouns opencallforartists VizierOpLinks commissionsopen fountainpenink MartinVanBeynen peppertop speedpainting animalpainting visionaryart blackartist figureart zine artists heart supportthearts genart urbanfantasy stickerei tree lineart smartcard pixelart alisajart openframeworks networknomicon openrailwaymap politicalpolicing Earthstar JuliaHartleyBrewer fan digitalArt artistsOfMastodon
+ cherrytree oilpaint arttips mastoartist paperart activism cali TraditionalArt theWorkshop Linke subresourceintegrity glitchart Art ocart robincolors resource urban article penandink webcomics CommissionsOpen glassart afrique martialarts watercolours artalley artvsartist2020 circulareconomy abstract artreference commission Earthquakes poe nomadbsd coloringpage dccomics colored inkscape blink artificalintelligence draw gigeconomy circuitsculpture ttip watercolor proceduralart resources poetesss memes ghibligif subpoena autisticartist barrigòtic art elinks sona animalart krita FreeColouringPage anthroart urbanart sigh queerart deviantart CircusInPlace communityresources desigualdad pastel fantasyart drawings 20thcenturyillustration grafana daria artdeco adultcolouring source collective openstreeetmap cryptoart fantasy collage jordanlynngribbleart educpop linksunten pro links CodeZwart thinkabout fanfic articles protein PartyPooperPost harmreductionart adhdmeme MastoArtHeader openra demoscene FreeArtLicense wallpaper generative political agriculture streetart coverart fountainpen stickers partners watercolour economy freeculture fiberart jet labyrinth educators mermay dpa artsale edu MastoArt particl urbansketchers ParticlV3 creativetoots culture ganart evenepoel opencl fiberarts polArt ink painting Leitartikel marten opencoop digitalart comic flyingonthewater kenmurestreet sartre artwork mandala artificialintelligence b3d politicalcartoon blackart makingcomics glitch politicalprisoner wallpapers railway riso xkcd supportartists drawtober startinblox comics intelligence linkinbio mastoart urbanterror illustration artopencall Hinkley gnuimagemanipulationprogram os studioghibli 2MinuteSketch wireart cartoon artistontwittter oc AccidentalGraffiti eink OriginalCharacter farts poezio webcomic DigitalArt partnership oilpainting kickstarter furryart twinkle DisabledArtist unixstickers pink fursona afriquedusud comicsans inkjet generativeart VaccineApartheid sticker enbyart originalart artbreeder 17maart fart videoart ivalice adultcoloring djmartinpowers arttherapy Cartudy fractal enby TattoosOfTheFediverse artikel WorldLocalizationDay colouringpage worldwaterday NFTart netart signalstickers artschool digitalpainting intel artvsartist maart abstractart drawing sig circular adhd sculpture artist pcbart meme cultureshipnames supertuxkart concretepoetry artwithopensource pinkwug Streeck VTMtober commissions apartheid pronouns opencallforartists VizierOpLinks commissionsopen fanon alroeart fountainpenink MartinVanBeynen peppertop speedpainting animalpainting visionaryart blackartist figureart zine artists heart supportthearts genart urbanfantasy stickerei tree lineart smartcard pixelart alisajart openframeworks professor networknomicon openrailwaymap politicalpolicing Earthstar JuliaHartleyBrewer fan digitalArt artistsOfMastodon
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ legal
+ NoALaReformaTributaria eek scanlines rma remote formatie2021 hfgkarlsruhe amro karlsruhe dmc remotelearning tamron SpreekJeUitBekenKleur newnormal line disinformation OnlineHarms GameSphere performance squeekboard stopline3 OnlineHarmsBill laipower gdpr intros Anticritique energyflow misinformation peekier MovieGeek informationsfreiheit mojeek digitalservicesact line3 mainline darmanin airline OfflineHarms permafrost geekproblem dmca
+
+ Mon, 17 May 2021 20:49:17 UT
-
nature
- hiking camping RedNeckedWallaby reforestation wat marsupial StormBella insect morning delightful plankton trees lichen MicroOrganisms badger ProForestation lightweight light gecko birds nature volcano teamcapy butterflies frogs rainforest snow sunrise fossils hambacherforest forestfinance leopardgecko moutains coldwater rocks inaturalist sunset forest LandRestoration australianwildlife forests capybara enlightened waterfall sundaymorning forestation enlightenment natur walking deforestation desert lava natural WoodWideWeb birdsarentreal lichensubscribe morningwalk SpringRockShed insects wildlife afforestation northernlights RainforestAlliance amphibians desertification
+ hiking camping RedNeckedWallaby reforestation hillwalking wat hambach nsu20 marsupial StormBella zensurheberrecht insect morning lavawervelwind delightful plankton trees lichen MicroOrganisms badger nsu2 ProForestation lightweight light gecko birds nature volcano teamcapy butterflies Nature frogs rainforest snow sunrise fossils hambacherforest forestfinance leopardgecko moutains coldwater rocks inaturalist sunset forest LandRestoration australianwildlife forests capybara enlightened waterfall sundaymorning forestation enlightenment natur walking watches deforestation desert lava natural WoodWideWeb birdsarentreal lichensubscribe morningwalk lighttheme nsu SpringRockShed insects wildlife afforestation northernlights RainforestAlliance amphibians desertification
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
writing
- blog amwriting authors poem cutupmethod tories story pdf blogPages swap shortstory magazine smallstories blogging smallpoems sciencefiction writing proverbs quotes blogs noblogo otf logo playwright hedgedoc microfiction interactivestorytelling westernjournal quote letterwriting icanhazpdf WriteFreely microblog bulletjournal storytelling goodread goodreads creativewriting horror wordplay limerick journals artjournaling zineswap zines shortstories journalists journal writingcommunity poetry 20thcenturypoetry amwritingfiction
+ blog framablog interactive amwriting authors poem cutupmethod tories story pdf blogPages swap shortstory magazine smallstories blogging smallpoems sciencefiction writing proverbs quotes blogs noblogo otf logo playwright hedgedoc microfiction interactivestorytelling westernjournal Videopoetry quote letterwriting icanhazpdf WriteFreely microblog bulletjournal storytelling goodread goodreads creativewriting horror wordplay limerick journals artjournaling zineswap zines shortstories journalists journal writingcommunity poetry 20thcenturypoetry amwritingfiction
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
music
- LibreMusicChallenge musicprodution KobiRock iea LaurieAnderson ics punk punkname ourbeats gas vollgasindiekrise indieweb cypherpunk synthesizer daftpunk bootstrappable indiemusic cipherpunk 20thcenturyjazz acousticguitar synthpop psychedelicrock steamlinux theCartographer streetpunk hydrapaper bikepunks bandcamp mymusic musicians jamendo ipod skinheadmusic jam rap shoegaze mp3 steam indie steganography steampunk ldjam48 indieauthor composing nazipunksfuckoff Music EnvoieStopHashtagAu81212 psychedelic thecure posthardcore vaporwave IndustrialMusicForIndustrialPeople Mixtip dubstep synthwave bootstrap oi rave freemusic nowplaying hiphop hardcore Musicsoft experimentalmusic nazi cp spotify fedimusic elisamusicplayer funkloch musicbrainz catsWithMusicalTalent eos90D soundcloud frankiegoestohollywood gastropod 20thcenturymusic vinyl rock ccmusic typographie dj newwave dorkwave producing experimental prince musicproduction chiptune loa lastfm tekno ripprince 1 funkwhale 20thcenturyrock eos wp playlist retrosynth NowPlaying libremusicproduction MusicAdvent coinkydink MusicTouring pmbootstrap midi arianagrande indiecember synth guitar blues musiciens listeningtonow music np bass techno musicmonday jazz production graphics darkwave mastomusic metal graphviz tigase polychromatic funk magnatune fediversemusic pegasus punkrock cyberpunkmusic raveculture cleantechnologies ldjam ftp BandcampFriday mixtape MusicsoftDownloader
+ LibreMusicChallenge musicprodution KobiRock iea LaurieAnderson ics punk punkname ourbeats gas vollgasindiekrise indieweb musician cypherpunk synthesizer daftpunk bootstrappable indiemusic cipherpunk 20thcenturyjazz acousticguitar synthpop psychedelicrock steamlinux theCartographer streetpunk hydrapaper bikepunks bandcamp mymusic musicians jamendo ipod skinheadmusic jam rap shoegaze mp3 steam indie steganography steampunk ldjam48 indieauthor composing nazipunksfuckoff Music strap EnvoieStopHashtagAu81212 musicmaking psychedelic thecure posthardcore vaporwave IndustrialMusicForIndustrialPeople Mixtip dubstep synthwave bootstrap oi graphisme rave freemusic nowplaying hiphop hardcore Musicsoft experimentalmusic nazi cp spotify fedimusic ml bootstrapping elisamusicplayer funkloch musicbrainz catsWithMusicalTalent eos90D soundcloud frankiegoestohollywood gastropod 20thcenturymusic vinyl rock ccmusic typographie dj newwave dorkwave producing experimental celticmetal prince musicproduction chiptune scraping loa bluestacks lastfm tekno ripprince 1 funkwhale 20thcenturyrock eos wp playlist retrosynth NowPlaying libremusicproduction MusicAdvent coinkydink MusicTouring pmbootstrap midi arianagrande indiecember synth guitar blues musiciens listeningtonow music np bass techno musicmonday jazz production graphics dieanstalt darkwave mastomusic metal graphviz tigase polychromatic funk magnatune fediversemusic pegasus punkrock cyberpunkmusic raveculture cleantechnologies ldjam ftp BandcampFriday mixtape MusicsoftDownloader
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
gardening
- seedstarting BlagueDeCodeur sporespondence blockade inde mastogarden kinder communitygardening som deno composting soil sehenswert cabbage bundeswehr opensourceseeds onions lettuce blossoms gardenersofmastodon datenschleuder florespondence cherryblossoms garden thyme flower horticulture DailyFlowers Schlachthofblockade cherryblossom acu kinderbijslag permaculture awesome hens papuamerdeka Auflagen lag CompanionPlanting gardens independence flowers kale gardening plants thegardenpath devilslettuce thegarden fahrräder gardenersworld golden beekeeping toeslagenaffaire seeds Opensourcegarden vegetablegarden
+ seedstarting BlagueDeCodeur sporespondence blockade inde mastogarden kinder communitygardening som deno composting soil sehenswert cabbage bundeswehr opensourceseeds onions lettuce blossoms gardenersofmastodon datenschleuder florespondence garten cherryblossoms garden thyme flower horticulture DailyFlowers Schlachthofblockade cherryblossom acu kinderbijslag permaculture awesome hens papuamerdeka Auflagen lag CompanionPlanting gardens independence flowers kale plants thegardenpath devilslettuce thegarden fahrräder gardenersworld golden beekeeping toeslagenaffaire seeds Opensourcegarden toeslagenschandaal vegetablegarden
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
countries
- thai romania burma lithuania solomon chile Instanz maui fiji tajikistan benin paraguay eeuu icelandtrip senegal ukraine italy brunei nicaragua guyana Pflanzenbestimmung euphoria zambia iceland morocco rojava netherlands swaziland tts bosnian suriname winningatlife elsalvador russia freeburma samoa romanian asl european czech belarus hayabusa2 bw kyrgyzstan uk abuse translation sanmarino catalonia panama africa west indians unitedkingdom japan Netherlands buyused venezuela gambia freeNukem kuwait barbados papua greece switzerland uae mau nigeria usa angola honduras djibouti laos sierraleone nonprofit britain cambodia ych vietnam esperanto neofeud zealios seychelles marshall kazakhstan estonia tonga stlucia burundi bangladesh egypt nachhaltigkeit japanese mali congo us jordan americangods speedrun grenada israel psychic algeria ghana bosnia translations russian eritrea bhutan armenian hungary Störungsverbot saudi slovenia tig mauikit czechosvlovakia bahamas libadwaita australia kiribati togo koreanorth poland Überbevölkerung malawi capeverde armenia american hautrauswasgeht bahrain mozambique japaneseglare americanpinemarten beleuchtung southsudan Martesamericana syria german micronesia maldives iran indigenous sweden bijîberxwedanarojava ethiopia cuba liberia canada burkina indian somalia Chile scotland russiaToday vaticancity easttimor austria turkey yemen Bolivia denmark USBased java madagascar finland philippines ivorycoast haiti ecuador Portugal azerbaijan gasuk spain albania massachusetts afghanistan rising europe mauritania dominica ökonomisierung thailand belize westpapuauprising nerdlife macedonia montenegro thenetherlands qatar mongolia costarica boatingeurope birdsofkenya latvia uzbekistan kabelaufklärung ireland iraq malaysia mexico investigations mauritius dezentralisierung oman chad nz de georgia zimbabwe france serbia lesotho romani oddmuse tunisia argentina czechia cameroon namibia sudan indonesia lifeboat colombia worldwildlifeday kryptowährung tuvalu britainology beckychambers turkmenistan tanzania germany neuhier norway comoros auteursrecht guatemala Thailand kosovo andorra wales indiastrikes servus pakistan belgium china antigua life koreasouth newzealand visiticeland einzelfall rwanda luxembourg libya indywales italyisntreal nauru moldova bad spanish eastindiacompany northernireland stigmergic palau taiwan kenya trinidad eu botswana sasl fossaudio CuriosidadesVariadas jamaica vanuatu cyprus aminus3 malta Icelandic niger s3 westpapua busse unitedstates myanmar saintvincent guinea nepal peru uganda uruguay india lebanon neurodiversity southafrica croatia europeanunion writerslife bolivia chinese dominican srilanka bulgaria slovakia speedrunning gabon psychedelicart ether stkitts liechtenstein neofeudalism brazil shutdowncanada
+ thai romania burma lithuania solomon chile Instanz maui fiji tajikistan benin paraguay eeuu icelandtrip senegal ukraine italy brunei nicaragua guyana Pflanzenbestimmung euphoria zambia iceland morocco rojava netherlands swaziland bosnian suriname winningatlife elsalvador russia freeburma samoa romanian asl european czech belarus hayabusa2 bw kyrgyzstan uk abuse translation sanmarino catalonia panama africa west indians unitedkingdom japan Netherlands buyused venezuela gambia freeNukem kuwait barbados papua greece switzerland uae mau FuckIsrael nigeria usa angola honduras djibouti laos sierraleone nonprofit britain cambodia translators ych vietnam esperanto neofeud zealios seychelles marshall kazakhstan estonia tonga stlucia burundi bangladesh egypt nachhaltigkeit japanese mali congo us jordan americangods speedrun grenada israel psychic algeria ghana bosnia translations russian eritrea bhutan armenian hama hungary Störungsverbot saudi slovenia tig mauikit czechosvlovakia bahamas libadwaita australia kiribati togo koreanorth poland Überbevölkerung malawi capeverde armenia american hautrauswasgeht bahrain mozambique WichtigerHinweis japaneseglare americanpinemarten beleuchtung southsudan adminlife europehoax Martesamericana syria german micronesia maldives iran indigenous sweden bijîberxwedanarojava ethiopia cuba liberia canada burkina indian somalia Chile hamas whatshappeningintigray scotland russiaToday vaticancity easttimor austria turkey yemen Bolivia denmark USBased java domesticabuse madagascar finland Wales philippines ivorycoast haiti ecuador Portugal azerbaijan gasuk spain albania massachusetts afghanistan rising europe mauritania dominica ökonomisierung thailand belize westpapuauprising nerdlife macedonia montenegro thenetherlands qatar mongolia costarica boatingeurope birdsofkenya latvia uzbekistan kabelaufklärung ireland iraq malaysia mexico investigations mauritius dezentralisierung oman chad nz de georgia zimbabwe france serbia lesotho romani oddmuse tunisia argentina czechia cameroon namibia sudan indonesia lifeboat colombia worldwildlifeday kryptowährung tuvalu britainology beckychambers turkmenistan tanzania germany neuhier norway comoros auteursrecht guatemala Thailand kosovo andorra wales indiastrikes Palestine servus pakistan belgium china antigua life europeanvalues koreasouth newzealand visiticeland einzelfall rwanda luxembourg libya indywales italyisntreal nauru moldova bad spanish eastindiacompany northernireland stigmergic palau taiwan kenya trinidad eu botswana Lebensmittelzusatzstoff sasl fossaudio CuriosidadesVariadas jamaica vanuatu cyprus aminus3 israele malta Icelandic niger s3 westpapua busse unitedstates myanmar saintvincent guinea nepal peru uganda uruguay india lebanon neurodiversity southafrica croatia europeanunion writerslife bolivia chinese dominican srilanka bulgaria slovakia speedrunning gabon psychedelicart ether stkitts liechtenstein neofeudalism brazil shutdowncanada
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ privacy
+ privacyplease state whatip PrivacyBook SearchHistory privacyaware dataprivacyday profiling what3words surveillancestate Privacy privacypolicy WhatsApp privacytoolsio makeprivacystick surveillancetech onlineprivacy developertools privacyredirect drugpolicy privacymatters policy privacyMatters whatsappprivacypolicy dataprivacy privacywashing privacy privacyinternational hat NoToWhatsApp DataPrivacyDay2020 PrivacyFlaw ev nl WhatsappPrivacy handtools
+
+ Mon, 17 May 2021 20:49:17 UT
-
hardware
- plugandplay peoplefarming purism schematics opennic zomertijd foundation restauration riscv solarpower carbonFootprintSham mietendeckel PersonalComputer cyberdeck PineCUBE tex keyboards electron hibernation schwarmwissen screenless homebrewcomputing FarmersTractorRally pinebook farming modem lowtech biblatex allwinner datenschutz daten pimeroni industrial analogcomputing homer TrueDelta keyboard screenprinting Pinecil raspberrypi3 pocketchip oshw misterfpga ArmWorkstation datensicherheit hardwarehacking mer picodisplay laptops electronics ham teamdatenschutz charm wolnabiblioteka uart panasonic pcb mermay printmaker deck powerpc acoustics ibmcompatible webcams modular larp cybredeck latex emmc ipadproart computing laptop solarpunk isa recycling apparmor repairability theatrelighting lenovo fairelectronics librem TokyoCameraClub MacBookProService pocket box86 JingPad fuse date solarpunkactionweek ibm 3dprinting electro carbon MechcanicalKeyboards hardware m68k retrohardware pinetab sicherheit openhardware raspberrypi datenautobahn webtoprint 3dprinter barcode Quartz64 PlanetComputer jtag ebu itsicherheit pinetime screens pinebookpro 3d batteries PinebookPro 3dprint Handprint modemmanager keyboardio mechanicalkeyboard robot arm lowerdecks ipad FireAlarms PinePower paperComputer amd openpower poweredSpeaker devopa eeepc F9600 rpi4 thinkpad RaspberryPiPico iot dat BeagleV repairable sbc circuitbending raspberrypi4 print displayport akihabara analog electronic
+ plugandplay peoplefarming purism schematics opennic zomertijd restauration riscv solarpower carbonFootprintSham mietendeckel PersonalComputer cyberdeck PineCUBE tex keyboards electron hibernation Nottingham schwarmwissen handheld screenless megapixels KeepTheDiskSpinning homebrewcomputing FarmersTractorRally pinebook farming modem lowtech biblatex allwinner datenschutz daten pimeroni lebensmittelsicherheit industrial hambibleibt analogcomputing homer TrueDelta keyboard screenprinting robotics Pinecil raspberrypi3 pocketchip oshw misterfpga ArmWorkstation datensicherheit hardwarehacking mer picodisplay laptops electronics scuttlebutt ham teamdatenschutz charm SectorDisk wolnabiblioteka uart panasonic pcb printmaker deck making hambi powerpc solar ssd acoustics ibmcompatible webcams modular larp cybredeck latex 3dprinted emmc ipadproart computing laptop solarpunk isa recycling apparmor repairability theatrelighting lenovo fairelectronics librem TokyoCameraClub MacBookProService pocket box86 JingPad righttorepair fuse date solarpunkactionweek ibm 3dprinting electro carbon MechcanicalKeyboards netbook hardware m68k pisa retrohardware pinetab sicherheit openhardware raspberrypi irobot datenautobahn webtoprint 3dprinter barcode Quartz64 PlanetComputer jtag ebu itsicherheit pinetime screens pinebookpro 3d batteries PinebookPro 3dprint Handprint modemmanager keyboardio mechanicalkeyboard electronicmusic robot arm lowerdecks ipad FireAlarms PinePower paperComputer amd openpower poweredSpeaker devopa eeepc F9600 rpi4 thinkpad RaspberryPiPico iot dat BeagleV repairable sbc circuitbending raspberrypi4 print displayport akihabara analog electronic FrameworkLaptop
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
security
- zuluCrypt signalboost repair encrypt letsencrypt messengers BrowserHistory FlexibilizaciónResponsable autoritäreretatismus BlacksInCyber omemo autotomy saveanonymity alg dataleak messenger foodinsecurity password keepassxc cryptography cybersecuritynews pipewire cryptolalaland solarwinds communityalgorithmictrust infosec gchq wireless castor repairing IHaveSomethingToHide fotografie passwords gif IronySec cryptowars anonym encryptioncan supplychainattacks UseAMaskUseTor anonymous cyberattack security tor comb e2e bruceschneier vpn BlacksInCybersecurity toreador itsec openssh factorio openssl spyware e2ee backdoor cryptotokens NSAmeansNationalScammingAgency stork conscientiousobjectors ed25519 torproject cryptomeanscryptography encryption 0day informationsecurity ssh misshaialert cybersec encryptionsist restore FormFactors crypto theObservatory autokorrektur giftofencryption kansascity auto signalapp anonymity fotografía onionshare onion autofahrer malware switchtosignal corydoctorow RestoreOurEarth radiorepair righttorepair cryptographyisoverparty opsec keepass encryptionists TastySecurity securitybyobscurity torsocks toronto nsa autorenleben schneier protonvpn trustissues InsecurityByObscurity yubikey nitrokey encrypted openpgp pgpainless ghibli castor9 deletesignal prismbreak gpgtools gpg fotopiastory equatorial sequoiapgp cybersecurity Tor CryptoWars signal noscript redaktor vector trust Torge cryptoparty wire historia itsecurity foto pgp RobinHoodStore cryptomator signalmessenger openvpn datasecurity autorotate regulators leak drugstore encryptiost libresignal doctors securitynow storage tracking
+ zuluCrypt signalboost repair encrypt letsencrypt messengers BrowserHistory FlexibilizaciónResponsable autoritäreretatismus BlacksInCyber omemo autotomy saveanonymity alg dataleak messenger foodinsecurity password keepassxc cryptography party cybersecuritynews pipewire cryptolalaland solarwinds communityalgorithmictrust infosec gchq wireless castor repairing IHaveSomethingToHide fotografie passwords gif IronySec cryptowars anonym encryptioncan supplychainattacks UseAMaskUseTor anonymous cyberattack editors security tor comb e2e bruceschneier gigafactory vpn BlacksInCybersecurity toreador itsec openssh factorio Reactorweg openssl spyware e2ee sequoia backdoor cryptotokens NSAmeansNationalScammingAgency stork conscientiousobjectors ed25519 torproject cryptomeanscryptography encryption 0day informationsecurity ssh misshaialert cybersec restore FormFactors crypto theObservatory autokorrektur giftofencryption foodsecurity kansascity auto signalapp anonymity fotografía onionshare onion encryptionist autofahrer malware switchtosignal corydoctorow RestoreOurEarth radiorepair algérie cryptographyisoverparty opsec keepass encryptionists TastySecurity securitybyobscurity torsocks toronto nsa autorenleben schneier protonvpn trustissues InsecurityByObscurity yubikey nitrokey encrypted openpgp pgpainless ghibli castor9 deletesignal prismbreak gpgtools gpg fotopiastory equatorial sequoiapgp cybersecurity Tor CryptoWars signal noscript redaktor vector trust Torge Torfverbrennung cryptoparty wire historia AllmendeKontor itsecurity foto pgp RobinHoodStore cryptomator signalmessenger openvpn datasecurity autorotate regulators leak drugstore encryptiost libresignal doctors securitynow storage tracking
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
science
- engineering math epidemiology stemfie electrochemistry ethnology womeninstem archeology botany STEM biodiversity ocean stemgeenFVD linguistic anthro supercollider nextgeneration zoology climatology SolarSystems dna geography physics archaeologist generalstreik geology ClinicalPsychology generationidentitaire economicanthropology Science SystemicRacism corrosion research stemwijzer bioengineering stemgeenPVV knowledge stemgeenVVD botanical dream dawkins ineigenersache stemgeenVVS holo graphTheory deepdreamgenerator meterology botanicalart JA21 regenerative biotech stemgeenJA21 psychology particles biology pacificocean generation gene fossilhunting badscience chemistry muon paleontology oceanography stem particlephysics nextgenerationinternet biomedical anthropology
+ engineering math politicalgeography epidemiology stemfie TranslateScience electrochemistry ethnology womeninstem archeology botany STEM biodiversity ocean stemgeenFVD linguistic anthro supercollider nextgeneration zoology climatology SolarSystems dna geography physics archaeologist generalstreik geology ClinicalPsychology generationidentitaire economicanthropology Science SystemicRacism OpenScience corrosion research stemwijzer systemsmap bioengineering stemgeenPVV knowledge stemgeenVVD botanical dream dawkins ineigenersache stemgeenVVS holo graphTheory deepdreamgenerator meterology botanicalart JA21 regenerative biotech stemgeenJA21 psychology particles biology hunt pacificocean generation gene fossilhunting badscience chemistry muon processengineering paleontology oceanography stem anthropocene particlephysics nextgenerationinternet biomedical mechanicalengineering anthropology
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
photos
- smartphonephotography nikon 90mm photography fujifilm wildlifephotography wild photo photogrpahy tokyocameraclub nikond90 photos macrophotography photographie photovoltaik camera macropod cameras fossphotography phonephotography myphoto naturephotography picture macro streetphotography FujinonXF90mm photoreference crop pictures
+ smartphonephotography nikon 90mm photography fujifilm wildlifephotography wild photocló photo photographe photogrpahy photographer tokyocameraclub nikond90 photos macrophotography photographie photovoltaik seancephoto camera macropod uwphoto macronie cameras fossphotography phototherapie phonephotography myphoto rewilding naturephotography picture wildfood macro streetphotography FujinonXF90mm wildcat photoreference crop phototherapy pictures
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
history
musichistory heirloom monarchs holocaust history arthistory makeinghistory anarchisthistory gaminghistory womenshistorymonth NetworkingHistory blackhistory monarch computerhistory
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
places
- lapaz luanda asunción nouakchott conakry kyiv moscow saipan gibraltar dublin KlimaGerechtigkeit stuff catalunya dannibleibt avarua lilo hargeisa delhi niamey chișinău freestuff colombo brasília phnompenh mbabane danni belgrade rotterdam belmopan pyongyang hannover strawinsky calls ulaanbaatar oranjestad Reykjavik gaborone seattle ndjamena raw singapore kingedwardpoint abidjan nuuk asshole pretoria papeete malé rhetorical robberfly zagreb gitega abudhabi flyingfishcove castries georgetown hagåtña videoFreex oric videofeedback borikua basseterre hamburg afrika kinshasa Schadensersatzforderung suva klimaatverandering valparaíso athens roseau sheffield baku charlotteamalie antananarivo domi pristina bordeaux MakoYass videocalls santiago fsb sukhumi berlin urk uptronicsberlin funafuti libreville puertorico ClimateChange hanoi philipsburg tehran banjul prague rawhide andorralavella daw yerevan portauprince videoprojects dakar paramaribo tifariti capetown rigaer94 dma tirana klima ankara ipswich managua lisbon bishkek amsterdam climatchoas kent klimaat EastVirginia portonovo santodomingo bangkok texas bucharest kathmandu aden madrid sanjuan vienna kingston stuttgart kabul damascus stockholm douglas ClassOf2015 willemstad klimaschutz hibernoenglish thehague panamacity RassismusTötet beirut amman newdelhi tórshavn nouméa oslo alofi gustavia paris cockburntown ottawa classical stepanakert portofspain klimakrise class fsberlin honiara berniememe asmara florida nicosia helsinki taipei tegucigalpa bridge tokyo tashkent larochelle vr gabocom MadeInEU sarajevo algiers KlimaKrise nairobi muscat monaco riyadh flying lusaka wellington bissau juba mariehamn majuro buenosaires ngerulmud dhaka berlinhateigenbedarf guatemalacity washington vatican kuwaitcity Erdmannhausen londonboaters SystemChangeNotClimateChange bern mexicocity bratislava myasstodontownhall bridgetown delhipolice crowsnestpass tunis manila stanley matautu copenhagen barcelona lomé videocall budapest ouagadougou mogadishu PrawnOS freetown victoria lora brazzaville portmoresby ashgabat kampala Klimaatalarm gigabitvoucher kirigami webassembly elaaiún vilnius ContourDrawing bloemfontein gnuassembly sucre london passalong marseille berniesanders pagopago bradesestate oakland vaduz addis nürnberg naypyidaw CassetteNavigation khartoum baghdad bandar moroni cuirass lehavre portvila kingstown ChrisCrawford reykjavík lofi manama accra windhoek fortworth nukualofa classic ciutatvella tbilisi canberra quito maputo cetinje adams putrajaya ramallah solimaske bogotá dodoma harare havana warsaw münster valletta snes localberlin ljubljana bamako kualalumpur podgorica rabat cotonou oranje plymouth seoul neumünster Portland dushanbe bangui aotearoa westisland tskhinvali palikir caracas jamestown rome munich cambridge freestuffberlin sãotomé jakarta daressalaam sansalvador seo apia essex yaren cairo jerusalem brussels kigali southtarawa beijing minsk montevideo vientiane philips maseru klimaatopwarming hamilton lorawan lurk doha klimaatwake tripoli celtic portlouis lima adamstown deventer weimar abuja fuckalabamapower saw lilongwe nassau lobamba bernardhickey heathrow nyc fly montreal rawtherapee dili thesprawl riga assembly lesbos monrovia nursultan Neuzulassung gab sanjosé klimaatrechtvaardigheid marigot islamabad fb malabo tallinn sahara thimphu oranjeklanten klimanotstand yaoundé praia bujumbura strawberries washingtondc sofia skopje
+ lapaz luanda asunción nouakchott conakry kyiv moscow saipan gibraltar dublin KlimaGerechtigkeit stuff catalunya dannibleibt avarua lilo hargeisa delhi niamey chișinău freestuff colombo brasília phnompenh mbabane danni belgrade rotterdam belmopan pyongyang hannover strawinsky calls ulaanbaatar oranjestad kali Reykjavik gaborone seattle ndjamena raw singapore tuberlin kingedwardpoint abidjan nuuk asshole pretoria papeete malé rhetorical robberfly zagreb gitega abudhabi flyingfishcove castries georgetown hagåtña podman videoFreex oric lichtenberg videofeedback borikua basseterre hamburg afrika kinshasa Schadensersatzforderung suva klimaatverandering valparaíso athens roseau sheffield baku charlotteamalie antananarivo domi pristina RadentscheidJena bordeaux MakoYass videocalls santiago fsb sukhumi berlin urk uptronicsberlin funafuti libreville radentscheid puertorico ClimateChange hanoi philipsburg tehran banjul prague Stockente rawhide andorralavella daw yerevan portauprince videoprojects dakar paramaribo tifariti capetown rigaer94 dma tirana klima ankara ipswich managua lisbon bishkek amsterdam climatchoas kent klimaat EastVirginia portonovo santodomingo bangkok texas bucharest kathmandu aden madrid sanjuan vienna kingston stuttgart Utrecht kabul damascus stockholm douglas ClassOf2015 willemstad klimaschutz hibernoenglish thehague panamacity RassismusTötet beirut amman newdelhi tórshavn nouméa oslo alofi gustavia paris cockburntown ottawa classical stepanakert portofspain klimakrise class fsberlin honiara berniememe asmara florida nicosia helsinki taipei tegucigalpa bridge tokyo tashkent larochelle vr gabocom MadeInEU sarajevo algiers KlimaKrise nairobi muscat monaco riyadh flying lusaka wellington bissau juba mariehamn majuro parisagreement buenosaires ngerulmud dhaka berlinhateigenbedarf guatemalacity washington bedarf vatican kuwaitcity martlesham Erdmannhausen londonboaters SystemChangeNotClimateChange bern mexicocity bratislava myasstodontownhall bridgetown delhipolice crowsnestpass tunis manila warwickshire stanley matautu copenhagen barcelona lomé videocall budapest ouagadougou mogadishu PrawnOS freetown victoria lora brazzaville portmoresby ashgabat kampala Klimaatalarm gigabitvoucher kirigami webassembly elaaiún kalimantan vilnius ContourDrawing bloemfontein gnuassembly sucre london passalong marseille berniesanders pagopago bradesestate oakland vaduz addis nürnberg naypyidaw CassetteNavigation khartoum baghdad bandar moroni cuirass lehavre portvila kingstown ChrisCrawford reykjavík lofi manama accra windhoek fortworth nukualofa classic ciutatvella tbilisi canberra quito maputo cetinje adams putrajaya ramallah solimaske bogotá dodoma berkeley harare havana warsaw klimapolitik münster valletta snes localberlin ljubljana bamako kualalumpur podgorica rabat cotonou oranje plymouth seoul neumünster Portland dushanbe bangui aotearoa westisland tskhinvali palikir caracas jamestown rome munich cambridge freestuffberlin sãotomé jakarta daressalaam sansalvador seo apia essex yaren cairo jerusalem brussels kigali southtarawa beijing minsk montevideo vientiane philips maseru klimaatopwarming hamilton lorawan lurk doha klimaatwake tripoli celtic portlouis lima adamstown deventer weimar abuja fuckalabamapower saw lilongwe nassau lobamba bernardhickey heathrow nyc fly montreal rawtherapee dili thesprawl riga assembly lesbos monrovia nursultan Neuzulassung gab sanjosé klimaatrechtvaardigheid marigot islamabad fb malabo tallinn sahara thimphu oranjeklanten klimanotstand yaoundé praia bujumbura strawberries washingtondc sofia skopje
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
software
- beta borgbackup app fossnorth freedombox windows libre nginx postscript freenet freebsd kc Framasoft Flisol2021 invidious drm publicdomain ilovefreesoftware kubernetes openvms luca nodrm copyleft fossmendations freedoom jami betatesting libregraphics FuckOffZoom quicksy whiteboard free docker softwarelibre opensourcehardware interoperability impression3d freesoftware gimp backups foss matrix dinosaur mossad designjustice thefreethoughtproject filesystems nextcloud translate wechat notmatrix gnupg duplicati HappyLight opensourcesoftware agplv3 compression openscad freeganizm uidesign TabOrder searx ikiwiki Linux FreeSoftware userresearch FlisolLibre2021 DisCOElements Audio rocketchat thanksfreesw immers outreachy synapse API lyft freekirtaner photoshop nitter virtualbox ngi4eu discord whisperfish ee vaporware opensource diaspora yunohost oss chickadee appstore dégooglisons littlebigdetails cabal conferencing libreboot musiquelibre mycroft accessibility devops kdeapplications owncast phabricator emacs freiesoftware FLOSSvol moss fluffychat impress writefreely videoconferencing bigbluebutton email ngi chatapps HappyNewYear fossilfriday floss plugins softwaresuite graphic libresoftware softwareengineering mosstodon expandocat deltachat application uifail FOSS lucaapp GNOMECircle rockpro64 bittorrent penpot vlc zoom tiling FriendofGNOME usability winamp opendesign obnam snap ProprietarySoftwareProblems pandoc blackcappedchickadee cryptpad software libretranslate OwnStream upstream maplibre slack Hummingbard Element safenetwork asia SoftwareLibre zrythm gnu CTZN mumble grsync freecad drmfree telegram containers tails blockchain irssi HabKeinWhatsapp mcclim jitsimeet iso mutt librelingo WeAreAlmaLinux tilingwm sri design gameoftrees GnuLinuxAudio freegan freetool backup trueLinuxPhone rotonde freetube GNU speechrecognition skydroid thunderbird sysadmin it sound alternativeto parler apps chat licensing fossasia inclusivedesign defectivebydesign metager screenreaders sysadmins ZeroCool LINMOBapps obsproject softwareheritage profanity Tankklappe doomemacs ffmpeg fossandcrafts GNOME40 telesoftware love reboot opensourcegardens switchingsoftware OSM freesw agpl distribute magnifyingglass GNOME freeganizmniewybacza drive AlmaLinux GreenandBlackCross strafmaatschappij freetillie distributedledger mattermost principiadiscordia blue LinuxPhones rocket ghostscript win10 Zoom elemental flisoltenerife libreops element platforms inclusive ptp chatty lucafail informationwantstobefree softwareGripe nativeApp MatrixEffect culturalibre jitsi flisol dinosaurier wordpress SwitchToJami mongodb ux rsync libreoffice crossstitch dino plugin xwiki openoffice container discordia softwaredesign redeslibres ledger sounddesign chatcontrol alternatives glimpse
+ beta borgbackup forms app fossnorth freedombox windows libre nginx krebsrisiken freepalestin calibre postscript AAPIHeritageMonth freenet freebsd kc Framasoft tts E40 Flisol2021 invidious drm publicdomain ilovefreesoftware hydra readers StoryMapJS kubernetes openvms luca nodrm copyleft fossmendations freedoom jami betatesting NottsTV libregraphics FuckOffZoom quicksy whiteboard free docker softwarelibre opensourcehardware interoperability impression3d freesoftware gimp backups foss matrix dinosaur mossad unfa designjustice thefreethoughtproject filesystems nextcloud translate wechat notmatrix gnupg duplicati HappyLight opensourcesoftware permissionless compression openscad freeganizm uidesign TabOrder searx ikiwiki Linux FreeSoftware userresearch FlisolLibre2021 DisCOElements Audio rocketchat thanksfreesw immers outreachy synapse API lyft freekirtaner photoshop nitter misogyny virtualbox ngi4eu discord whisperfish ee vaporware opensource diaspora yunohost oss chickadee appstore dégooglisons littlebigdetails cabal conferencing libreboot musiquelibre mycroft accessibility devops kdeapplications owncast phabricator emacs freiesoftware FLOSSvol moss fluffychat dinoim impress writefreely videoconferencing bigbluebutton email ngi esri chatapps HappyNewYear fossilfriday floss plugins softwaresuite graphic libresoftware softwareengineering mosstodon expandocat deltachat application uifail FOSS peatfree lucaapp GNOMECircle rockpro64 bittorrent palestinewillbefree penpot vlc zoom tiling FriendofGNOME usability winamp opendesign obnam snap ProprietarySoftwareProblems pandoc blackcappedchickadee cryptpad software libretranslate OwnStream upstream maplibre slack Hummingbard Element DismantleFossilCompanies safenetwork asia SoftwareLibre zrythm gnu CTZN mumble grsync freecad drmfree telegram containers tails blockchain irssi HabKeinWhatsapp mcclim jitsimeet dedrm iso mutt librelingo freetibet WeAreAlmaLinux tilingwm sri design gameoftrees GnuLinuxAudio freegan freetool backup trueLinuxPhone rotonde freetube GNU speechrecognition skydroid thunderbird sysadmin it sound alternativeto screenreader parler apps chat licensing fossasia inclusivedesign defectivebydesign metager screenreaders sysadmins ZeroCool LINMOBapps freedombone obsproject softwareheritage pittsburgh profanity Tankklappe doomemacs ffmpeg fossandcrafts GNOME40 telesoftware love reboot opensourcegardens switchingsoftware OSM freesw agpl distribute magnifyingglass GNOME freeganizmniewybacza drive AlmaLinux GreenandBlackCross strafmaatschappij freetillie distributedledger mattermost principiadiscordia blue LinuxPhones rocket ghostscript win10 Zoom tibet elemental flisoltenerife libreops element platforms inclusive engineer freepalestine ptp chatty lucafail informationwantstobefree softwareGripe nativeApp MatrixEffect culturalibre jitsi flisol dinosaurier wordpress SwitchToJami mongodb ux rsync libreoffice crossstitch dino plugin xwiki openoffice container discordia softwaredesign redeslibres ledger sounddesign palestine chatcontrol alternatives glimpse
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
conferences
- FOSDEM2021 stackconf debconf FOSDEM talk fossdem FreedomBoxSummit apconf2020 schmoocon realtalk penguicon2021 summit confidenceTricks libreplanet confluence minidebconf edw2021 rc3worldleaks StopStalkerAds SeaGL penguicon emacsconf MCH2021 flossconference conferences ox defcon emfcamp flossevent askpinetalk conf defcon201 rC3 rC3World FOSDEM21 conference mozfest flossconf apconf ccc persconferentie GeekBeaconFest rC3one smalltalk C3 config penguicon2022 confy
+ FOSDEM2021 stackconf debconf FOSDEM talk fossdem FreedomBoxSummit apconf2020 schmoocon realtalk penguicon2021 summit confidenceTricks agm libreplanet confluence minidebconf edw2021 maintainerssummit rc3worldleaks StopStalkerAds SeaGL penguicon emacsconf MCH2021 flossconference conferences ox defcon emfcamp flossevent askpinetalk conf defcon201 rC3 rC3World FOSDEM21 conference mozfest flossconf apconf ccc persconferentie GeekBeaconFest rC3one smalltalk C3 config penguicon2022 confy
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
food
- vitamind cake teamviewer FoodHardship pankow margarine zwartepiet dessert foils salsa caviar brot theexpanse BellaSpielt cookery pietons Ôtepoti panther food cakecutting skillet teamgodzilla spiel liquor milk bolognese recipe foodporn yeast drinking VendrediPeanutsNouka plate waffle pansexual biscuit glaze omelette veganismo filet pastry wine woke Caribbeans hamburger juice unauthorizedbread Amazfish sourdough gedankenspiel cagefree nuts gras toast broth batter foodie breadposting spiele ketchup divoc seasoning mayo soup arpanet pan voc imateapot Anglefish potatoes mayonnaise vegan dish avocado spice keto bakery butterfly cooking teamhuman SailfishOS yogurt thecandycrystalrainbowcodex crumble cider caffeine butter mastokitchen triceratops cook pottery creepypasta wastemanagement kitchencounter mastocook cobbler steak pizza vocaloid soda fedikitchen aroma oil Miroil angelfish flour foodsovereignty cream nutella pie cuisine potse meatismurder freerange tartar kropotkin tea marinade cakes mushroom thekitchen entree lfi dominospizza bread salad beans fresh syrup fermentation teamsky mushrooms cookie wordstoliveby curd soysauce lowcarb pudding plantbased beer baking peterkropotkin fish panoptykon spanisch foodwaste wholeGrain wheat pot TeamFerment Wypierdalaj sauerkraut stew weltspiegel chocolate paste soynuevo wok rainbow recipes kitchengarden expanse olive burger mrpotatohead candy Steam kitchen coffee bagel teams taste SpieleWinter2020 meat johannisbeeren noodle raclette caramel rice eggs grill davewiner poutine demoteam lard croissant pasta vegane strawberry foods WaterDrinkers cheese oregano drink muffin bikekitchen krop LowRefresh foie onepiece sauce foodanddrink soy godzilla growyourfood vore wholewheat pandemie cocoa sandwich mousse waste chili redfish
+ vitamind cake teamviewer FoodHardship pankow margarine zwartepiet panthera dessert foils salsa caviar utopie brot theexpanse BellaSpielt cookery pietons Ôtepoti panther food cakecutting skillet teamgodzilla spiel liquor milk bolognese recipe foodporn yeast drinking VendrediPeanutsNouka plate waffle pansexual biscuit glaze omelette veganismo filet pastry wine woke Caribbeans hamburger juice unauthorizedbread Amazfish sourdough gedankenspiel cagefree nuts gras toast broth batter foodie breadposting spiele haggis ketchup carrots divoc seasoning mayo MastoEats soup arpanet pan voc imateapot Anglefish potatoes mayonnaise vegan dish avocado spice keto bakery butterfly cooking teamhuman SailfishOS Trypanophobia AgentProvocatuer yogurt thecandycrystalrainbowcodex crumble cider caffeine Kinipan butter mastokitchen triceratops cook pottery creepypasta wastemanagement kitchencounter mastocook cobbler steak pizza vocaloid crystal soda fedikitchen aroma oil Miroil angelfish flour foodsovereignty cream nutella pie cuisine potse meatismurder freerange tartar kropotkin tea marinade cakes mushroom thekitchen entree lfi dominospizza bread salad beans fresh syrup fermentation teamsky mushrooms cookie wordstoliveby curd soysauce lowcarb pudding plantbased beer peterkropotkin fish panoptykon spanisch foodnotbombs foodwaste wholeGrain wheat pot TeamFerment timewaster Wypierdalaj sauerkraut stew weltspiegel chocolate paste soynuevo wok rainbow recipes kitchengarden expanse olive burger mrpotatohead candy lifesnacks Steam kitchen coffee foodshortage bagel batterylife OpTinfoil teams taste SpieleWinter2020 meat johannisbeeren noodle raclette caramel rice eggs grill davewiner poutine demoteam lard croissant pasta vegane strawberry foods WaterDrinkers cheese oregano drink muffin bikekitchen krop LowRefresh foie onepiece sauce foodanddrink soy foodpics godzilla growyourfood vore wholewheat pandemie cocoa sandwich mousse waste chili redfish
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
farming
johndeere deer
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
indymedia
- fpga hs2 visionontv geek tredtionalmedia degeek globleIMC indymediaback openfoodnetwork pga indymedia networking stupid hs2IMC indymediaIMC network networkmonitoring roadsIMC stupidindivialisam roadstonowhere lifecult avgeek monitor omn tv roadstonowhereIMC UKIMC fluffy 4opens openmedianetwork
+ fpga hs2 dotcons visionontv geek tredtionalmedia degeek globleIMC indymediaback openfoodnetwork pga mainstreaming indymedia networking closed stupid encryptionsist hs2IMC indymediaIMC network networkmonitoring roadsIMC stupidindivialisam roadstonowhere networkeffect lifecult closedweb avgeek monitor omn tv roadstonowhereIMC UKIMC fluffy 4opens openmedianetwork
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
cycling
- bicycle cycle bic cycling bike motorbike cyclingtour thingsonbikes openbikesensor Snowbike cyclist
+ bicycle cycle bic cycling bike motorbike cyclingtour thingsonbikes openbikesensor bikeways Snowbike cyclist
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
phones
- mobileapp fairphone3 téléphone nemomobile manjaro Jingos plasmaDev 5g mobian pine alarmphone fdroid plasmamobile shotonpinephone fairuse android smartphonepic nophone ubportsqanda linuxmobile sailfish phones fennecfdroid Mobian osmf smartphone plasma5 ios selinux mobileGNU PinePhoneOrderDay sms4you mob bp microphone linuxconnexion smartphones iOS14 pinemarten linuxphones openmoko mobilecoin mobilelinux freeyourandroid fair QWERTYphones sailfishos siskinim epic monal android10 osmocom Smartphones WakeMobile lineageos molly androiddev manjarolinux plasma phosh BriarProject librem5 ubportsinstaller osm shotonlibrem5 pinephone Teracube PinePhone mobile pinephones sms pine64 fairphone ubuntutouch linphone Android alpinelinux osmirl linux ubports gnomeonmobile osmand vodafone gnomemobile linuxonmobile iphones postmarketos iOS microg grapheneos recycletechjunkuselinux phone mobileKüfA
+ mobileapp fairphone3 téléphone nemomobile linuxfr manjaro Jingos plasmaDev 5g mobian LinuxPhoneApps pine alarmphone androidemulator fdroid plasmamobile shotonpinephone fairuse android smartphonepic nophone ubportsqanda linuxmobile sailfish phones fennecfdroid Mobian osmf AlpineConf smartphone plasma5 ios selinux mobileGNU PinePhoneOrderDay sms4you mob bp microphone linuxconnexion smartphones iOS14 pinemarten linuxphones openmoko mobilecoin mobilelinux freeyourandroid fair QWERTYphones sailfishos siskinim epic monal android10 osmocom Smartphones WakeMobile lineageos molly androiddev manjarolinux plasma phosh BriarProject librem5 ubportsinstaller osm shotonlibrem5 pinephone Teracube PinePhone pinedio mobile pinephones sms pine64 fairphone ubuntutouch linphone Android alpinelinux osmirl linux ubports gnomeonmobile immobilienwirtschaft osmand vodafone gnomemobile linuxonmobile iphones postmarketos iOS microg grapheneos recycletechjunkuselinux phone cm mobileKüfA josm linuxappsummit Xperia10mark2
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
pandemic
- covid19 coronaPolicies corona justasleepypanda psmeandmywholefamilycaughtcovidfromwork Coronavirus CoronaWarnApp facemasks vaccines pandemics vaccine JournalistsSpeakUpForAssange coranavirus pandemic sayhername internationalproletarianrevolution Zbalermorna covidville ZeroCovid contacttracing SùghAnEòrna tier4 coronapandemie covid pand volodine COVID19NL Moderna coronavirus masks Moderna2 COVIDrelief virus contacttracingapps moderna coronadebat Lockdown rna codid19 COVID19 YesWeWork ContactTracing vol CoronaCrisis COVID coronamaatregelen coronabeleid
+ covid19 coronaPolicies gevaccineerd corona justasleepypanda psmeandmywholefamilycaughtcovidfromwork Coronavirus CoronaWarnApp facemasks vaccines pandemics vaccine JournalistsSpeakUpForAssange coranavirus pandemic sayhername internationalproletarianrevolution Zbalermorna covidville ZeroCovid volkstheater COVID19india contacttracing coronavaccinatie SùghAnEòrna tier4 coronapandemie covid pand volodine COVID19NL Moderna coronavirus masks Moderna2 COVIDrelief virus contacttracingapps moderna coronadebat COVIDー19 Lockdown rna codid19 COVID19 YesWeWork ContactTracing vol CoronaCrisis COVID coronamaatregelen international internationalsolidarity coronabeleid
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
books
- readinggroup bookstore bookbinding justhollythings bookclub fake earthsea review ebooks docbook book notebook public amreading republicday failbook bookwyrm 5minsketch bookreview reading theLibrary cda netbook audiobooks sketchbook wayfarers fakebook books peerreview bookreviews failbooks sketch ebook wikibooks epub cookbook AnarchoBookClub
+ readinggroup bookstore bookbinding justhollythings bookclub fake fail earthsea review ebooks docbook book notebook public amreading publishing republicday bookworm bookwyrm 5minsketch republique bookreview reading theLibrary cda audiobooks Gempub sketchbook wayfarers books peerreview bookreviews failbooks sketch ebook wikibooks epub cookbook AnarchoBookClub
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
bots
- mrrobot human bot Militanzverbot nobot botanists humanity militanzverbot humanrobotinteraction therobots humanetechnow verbote humankind
+ mrrobot human bot Militanzverbot nobot botanists humanity militanzverbot Sabot44 humanrobotinteraction therobots humanetechnow verbote humankind
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
war
ru DonavynCoffey Myanmarmilitarycoup civilwar antiwar bomber coup tank handforth landmine tankies military autonomousweapons army Etankstelle weaponsofmathdestruction conflict navy warplane fort guns Myanmarcoup weapons siege battle WMD wmd airforce forth
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ techbros
+ bubbles bubble redbubble securedrop einfachredeneben coloredpencil redhat hackernews weareredhat red pencil reddit redis infrared VendrediNouka redshift
+
+ Mon, 17 May 2021 20:49:17 UT
-
astronomy
telescope mercury pluto planets galaxy venus mars amateurastronomy uranus spacex nebula astronomy neptune space jupiter blackhole asteroid BackYardAstronomy moon thehitchhikersguidetothegalaxy observatory asteroidos saturn milkyway spacelarpcafe
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
other
- ageassurance lastpass yolo nothingnew Lastpass extinction MasseyUniversity itscomplicated massextinction misc mining pinside rant Terrassen righttodisassemble nsfw biomass ass Chiacoin assassinfly migrantstruggles PointlessGriping decluttering OCUPACAOCARLOSMARIGHELLA assembler
+ ageassurance extinctionrebellion masseffect lastpass yolo nothingnew Lastpass extinction weareclosed MasseyUniversity solution itscomplicated isntreal massextinction misc frantzfanon biomassacentrale mining pinside impfpass rant Terrassen righttodisassemble SomeUsefulAndRelvantHashtag nsfw biomass ass Chiacoin assassinfly migrantstruggles PointlessGriping decluttering OCUPACAOCARLOSMARIGHELLA assembler
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ month
+ maythe4thbewithyou april 1may july march chapril marchofrobots2021 october november august june blackherstorymonth december september augustusinc may feburary jejune january marchofrobots blackhistorymonth march4justice month robots maythe4th blacktheirstorymonth
+
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ activism
+ rightwing rights protestor dutysolicitor roots annonce clearchannel nog20 Lobauautobahn farright tyrannyofconvenience grassroot nonviolentcommunication FreeLibreOpen g20 JusticeForRapheal rig bekannt farmersprotest animalrights protests riseup DontShootTheMessenger linnemann sflc DanniVive apt freeassange reuse stopspyingonus keepiton Dannenroederforst FSFE20 fsfe killthebill softwarefreedom indigenousrights AntiCopyright ilovefs ann activist HeroesResist edrigram xr SustainableUserFreedom bannerlord undercurrents righttoexist seachange directaction mannheim Doulingo politicalactivism wechange eff change openrightsgroup protest icantbreathe JeffreySDukes FSF actiondirecte kroymann protestsupport climatchange HS2 ngo MarcWittmann StandWithTillie Danni fsf fsfi StopHS2 grassroots HS2Rebellion FreeJournalistAssange antireport ClimateJustice duolingo BLM ExtinctionRebellion shellmustfall namechange changeisinyourhands weareallassange conservancy ngos sp JefferySaunders CopsOffCampus GreatGreenWall LiliannePloumen freeassangenow directactiongetsthegoods hauptmann activismandlaw climatechangeadaptation Kolektiva XR freeolabini tellthetruth announcement isolateByoblu annieleonard
+
+ Mon, 17 May 2021 20:49:17 UT
-
news
- report news flash Wikileaks newsletter nothingnews newsflash newsroom Worldnews rt bbc foxnews News goodnews doubledownnews bbcnews reuters theguardian badReporting newsboat journalism SkyNews lobsters
+ report news flash Wikileaks newsletter nothingnews newsflash newsroom Worldnews rt bbc foxnews journalismisnotacrime News goodnews doubledownnews bbcnews reuters theguardian badReporting newsboat journalism SkyNews lobsters
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
cats
- Cat dailycatpic dxp DailyCatVid Cats katze kotorico kot CatsOfMastodon Catshuis Leopard catbellies LapCats qualitätskatzen
+ Cat dailycatpic dxp DailyCatVid Cats katze kotorico kot qualitätskatze CatsOfMastodon Catshuis Leopard CatBellies catbellies LapCats qualitätskatzen
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ podcasts
+ beautiful podcasting IntergalacticWasabiHour JenaFahrradies BomberBradbury podcast rad tilde postmarketOSpodcast tilderadio tildes podcasts tildeverse radverkehr smallisbeautiful fertilizers PineTalk radweg tilvids fahrrad tildetown qtile trillbilliespodcast
+
+ Mon, 17 May 2021 20:49:17 UT
-
employment
- InterviewQuestions bullshit jechercheunjob mywork employees hiring workingfromhome ProgrammingJob reproductivework frame workinprogress bullshitjobs car workplace antiwork kreaturworks worklog sexworkers mainframe remotework remotejobs job DjangoJob teamwork framework hire KDEGear hirefedi workshop illustratorforhire tidyworkshops carework nowhiring KDE KDEGear21 obs workersrights obsolescence KDEFrameworks work hertfordshire flossjobs jobs precariousworkers sexworker
+ InterviewQuestions bullshit jechercheunjob mywork employees hiring workingfromhome ProgrammingJob reproductivework frame workinprogress bullshitjobs car workplace antiwork kreaturworks worklog sexworkers mainframe remotework remotejobs job DjangoJob teamwork framework hire KDEGear hirefedi workshop illustratorforhire tidyworkshops carework nowhiring KDE rds KDEGear21 obs workersrights obsolescence KDEFrameworks work hertfordshire flossjobs jobs precariousworkers sexworker
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
radio
- cbradio worldradioday hamr varia why tootlabradio pouetradio dx macintosh amateurradio radiohost radiokapital localization nwr vantaradio ca radio healthcare listening hamradio FreeAllPoliticalPrisoners variabroadcasts card10 fastapi radiobroadcasting radiosurvivor Poecileatricapillus apis radioshow local radio3 noshame osh audycja hackerpublicradio kosher Phosh audycjaradiowa california road nowlistening radiobroadcast radiostation mastoradio broadcasting radiodread amateurr spazradio anonradio kolektywneradio io api
+ cbradio worldradioday radiokookpunt hamr freieradios varia why tootlabradio pouetradio dx macintosh amateurradio radiohost radiokapital localization nwr vantaradio ca radio healthcare listening hamradio FreeAllPoliticalPrisoners variabroadcasts card10 fastapi radiobroadcasting radiosurvivor Poecileatricapillus apis radioshow local radio3 noshame osh audycja hackerpublicradio kosher Phosh audycjaradiowa california road nowlistening radiobroadcast radiostation mastoradio broadcasting radiodread amateurr spazradio anonradio Capitaloceno kolektywneradio io
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
pets
- spinning catpics uninstallman ExposureNotifications germanshepherd catofmastodon nin TheRabbitHole verification eurocrats QuestioningTechnology cathedrals Stelleninserat reEducationCamp mastodogs rats catbehaviour digidog Stallman Coolcats petrats governing dogsofmastodon gentrification evening broadcats gattini bunyPosting kitten fostercats cats uninStallman kittens Uninstallman pet dog scotties ageverification Pruning acat caturday catsofmastodon leninismo meow cute mastocat lenin catstodon dogs catsofparkdale mastocats W3CSpecification mastodog notpixiethecat londoninnercitykitties cat blackcat furry petitie dogsofmaston training catcontent UserDomestication
+ spinning catpics shepherd uninstallman ExposureNotifications germanshepherd catofmastodon nin TheRabbitHole verification eurocrats QuestioningTechnology cathedrals Stelleninserat acidification reEducationCamp mastodogs rats puppets catbehaviour digidog Stallman Coolcats petrats governing dogsofmastodon gentrification evening broadcats gattini bunyPosting kitten fostercats cats uninStallman kittens Uninstallman pet dog scotties ageverification Pruning woningnood acat caturday catsofmastodon leninismo meow cute mastocat lenin catstodon dogs reimagining catsofparkdale mastocats W3CSpecification mastodog notpixiethecat londoninnercitykitties cat blackcat furry petitie dogsofmaston training catcontent UserDomestication
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
games
- appdesign minecraft tetris99 gamestop ageofempires BiophilicDesign videogame ksp TerraNil dungeonmaster AudioGame runequest miniatures dragonfall boardgames computergames fucknintendo fudgedice gameassets gamestonk videogames FediDesign puzzle indiegames gamedesign shadowrun spot godotengine adventuregames chess gamejam nintendoswitch mud indiegame game 0ad dragon playlog gameart opengameart sign asset ttrpg gamedev freegames guildwars2 bideogames TetrisGore gaming gamemaker gameing nintendo roleplayinggames Gamesphere devilutionx rpg gamespot tetris dosgaming DnD cyber2077 godot tarot cyberpunk2077 gamesforcats FreeNukum spelunkspoil boardgaming supermariomaker2 neopets minetest omake guildwars dice dnd games
+ appdesign minecraft nbsdgames tetris99 gamestop ageofempires BiophilicDesign videogame ksp TerraNil dungeonmaster gogodotjam AudioGame runequest miniatures dragonfall boardgames computergames fucknintendo fudgedice gameassets gamestonk videogames FediDesign puzzle indiegames gamedesign shadowrun spot godotengine adventuregames chess gamejam nintendoswitch mud indiegame game 0ad dragon playlog gameart orca sdg opengameart sign asset ttrpg gamedev freegames guildwars2 bideogames TetrisGore gaming gamemaker gameing nintendo roleplayinggames Gamesphere devilutionx rpg gamespot tetris dosgaming DnD socialdesign cyber2077 godot tarot cyberpunk2077 gamesforcats FreeNukum spelunkspoil boardgaming supermariomaker2 neopets minetest omake guildwars dice dnd games
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
years
newyearsresolutions resolutions Year2020 year 1yrago newyear happynewyear 5yrsago newyearseve
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
linux
- osdev opensuse share linuxisnotanos elementaryos cli buster viernesdeescritorio shell aves kde Debian11 reprobuilds pureos kdepim thisweekinlinux slackware wegmetdemonarchie search bsd tap openwrt falling runbsd distros stapler tmux seashell nixos alpine nix DebianBullseye xfce ubuntubuzz gnutools vaguejoke ack shareyourdesktop personal wireguard whonix hardenedbsd linuxaudio mate usb nixpkgs wordsearch torvalds gtk linuxmint DebianAcademy debian chroot trisquel gnome distrowatch linuxposting fedoraonpinephone console showyourdesktop FuckDeMonarchie windowmanager desktop GuixSystem arch platform ubuntu personalwiki snowfall gnulinux aur justlinuxthings xubuntu kdeframeworks5 unix fedora openbsd centos tuxedocomputers openmandriva gentoo aurora researcher liveusb dee personalarchive usergroup StockOS systemd linuxgaming Debian distro icecat tape puppylinux destinationlinux LinuxSpotted suicide show Squarch computer gtk3 escritoriognulinux qubesos i3wm clipstudiopaint dadjokes kubuntu epr JuiceFS reproducible haiku linuxisnotaplatform clip fall EMMS minicomputer raspbian netbsd DanctNIX termux btrfs reproduciblebuilds gravitationalwaves joke artix gtk4 linuxexpress archlinuxarm bash archlinux hare linuxconfau researchers AuratAzadiMarch gnomebuilder GNUlinux rhel debianinstaller debianindia linuxisajoke tux suse zsh linuxconsole
+ osdev commandline opensuse share linuxisnotanos elementaryos cli buster viernesdeescritorio shell nu aves kde FragAttacks Debian11 reprobuilds pureos kdepim thisweekinlinux slackware wegmetdemonarchie search bsd tap openwrt falling runbsd distros stapler tmux seashell nixos alpine nix DebianBullseye xfce ubuntubuzz gnutools vaguejoke ack shareyourdesktop shellagm personal wireguard whonix hardenedbsd linuxaudio mate usb nixpkgs wordsearch landback alpines computertruhe torvalds gtk linuxmint DebianAcademy debian chroot trisquel gnome distrowatch linuxposting fedoraonpinephone console showyourdesktop FuckDeMonarchie researchassistants anarchie windowmanager desktop GuixSystem arch platform ubuntu personalwiki jodee snowfall gnulinux aur justlinuxthings xubuntu kdeframeworks5 unix fedora openbsd centos tuxedocomputers tracker openmandriva backwaren gentoo aurora researcher liveusb dee personalarchive usergroup StockOS systemd linuxgaming Debian distro icecat tape puppylinux destinationlinux LinuxSpotted suicide show Squarch computer gtk3 escritoriognulinux acepride qubesos i3wm clipstudiopaint dadjokes kubuntu epr JuiceFS reproducible haiku linuxisnotaplatform clip fall EMMS planetdebian minicomputer altap raspbian netbsd DanctNIX termux btrfs reproduciblebuilds gravitationalwaves joke artix gtk4 esc linuxexpress archlinuxarm bash archlinux hare linuxconfau researchers AuratAzadiMarch gnomebuilder GNUlinux rhel debianinstaller debianindia linuxisajoke tux suse zsh linuxconsole
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
transport
deutschland deutsch deutschebahn
- Sat, 01 May 2021 11:58:46 UT
-
--
- activism
- rights protestor dutysolicitor roots annonce clearchannel nog20 farright tyrannyofconvenience grassroot nonviolentcommunication FreeLibreOpen g20 JusticeForRapheal rig bekannt farmersprotest animalrights protests riseup sflc DanniVive apt freeassange reuse stopspyingonus keepiton FSFE20 fsfe killthebill softwarefreedom AntiCopyright ilovefs ann activist edrigram xr SustainableUserFreedom bannerlord undercurrents righttoexist seachange directaction mannheim Doulingo politicalactivism wechange eff change openrightsgroup protest icantbreathe JeffreySDukes FSF actiondirecte kroymann protestsupport climatchange HS2 ngo MarcWittmann StandWithTillie fsf fsfi StopHS2 grassroots HS2Rebellion FreeJournalistAssange antireport ClimateJustice BLM ExtinctionRebellion shellmustfall namechange changeisinyourhands weareallassange conservancy ngos sp JefferySaunders GreatGreenWall LiliannePloumen freeassangenow directactiongetsthegoods climatechangeadaptation Kolektiva XR freeolabini announcement isolateByoblu annieleonard
-
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
crafts
- topic_imadethis hackerexchange exchange quilts textile upholstery hackgregator gatos gato hackspacers shack 3dmodeling dust3d hackerspaces tryhackme sanding solvespace sundiy craft papercrafts maker knitting hack hacked calligraphy biohacking wip spacecrafts hacktheplanet jewelry diy textiles projects hackerweekend handicrafts Handicraft upcycling woodworking 3dcad glass origami makers quilting crafting hacker quilt crafts weaving 3dmodel tinkering hacking woodwork ceramics embroidery shacks teardown
+ topic_imadethis hackerexchange exchange quilts textile upholstery hackgregator gatos gato hackspacers nrw shack 3dmodeling dust3d hackerspaces hacklab hackerexchange
+
+
+]] tryhackme sanding solvespace sundiy craft papercrafts maker knitting hack hacked Sipcraft calligraphy biohacking wip spacecrafts hacktheplanet jewelry diy textiles projects hackerweekend handicrafts Handicraft upcycling woodworking 3dcad glass origami makers nrwe quilting crafting hacker quilt crafts rwe weaving 3dmodel tinkering hacking woodwork ceramics embroidery shacks teardown
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
seasons
- mailspring spring lupin thespinoff Dadvice hiddenServices autumn abolishice namedropping office hooping es pinterest winter ice hpintegrity pingpong PoliceTenSeven santa summer iced summerschool onlyoffice icedipping solstice unicef wintersolstice FederalOffice summerRolls pin homeoffice
+ mailspring spring lupin thespinoff Dadvice autumn abolishice namedropping office hooping es winter ice luejenspringer hpintegrity pingpong santa summer iced summerschool onlyoffice icedipping solstice unicef FreedomCamping wintersolstice FederalOffice summerRolls pin mice
- Sat, 01 May 2021 11:58:46 UT
-
--
- legal
- commandline eek scanlines rma remote formatie2021 hfgkarlsruhe amro karlsruhe dmc remotelearning tamron SpreekJeUitBekenKleur newnormal line disinformation OnlineHarms GameSphere squeekboard stopline3 OnlineHarmsBill laipower gdpr intros Anticritique energyflow misinformation peekier MovieGeek mojeek digitalservicesact line3 mainline airline permafrost geekproblem dmca
-
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
questions
- checking askmastodon biking questions king lockpicking askfedi askafriend question SocialNetworkingReimagined askmasto askfediverse totallyaskingforafriend ask askfosstodon
+ checking askmastodon flockingbird biking questions king lockpicking askfedi askafriend flask GlobalBanOnFracking TraditionalWoodworking question SocialNetworkingReimagined askmasto breaking maskengate askfediverse totallyaskingforafriend ask askfosstodon
- Sat, 01 May 2021 11:58:46 UT
-
--
- climate
- energy SoilCarbon vampire renewables fuel clouds apollo racisme mitm openscience renewableenergy ClimateMeme amp climateemergency climatechos ClimateAction climate climateracism renewable windenergy ClimateProtection coal mit weatherforecast crisis vampiro klimaatcrisis environment skypack poll fossilfuel earthscience globalwarming climatechange limitededition weather ragingqueerenergy climatecamp windpower sealevelrise globally globalization climatechoas racism CarbonOffsets basecamp exitpoll pollution global parisclimateagreement science fossil OABarcamp21 fossilfuels Climate sky climatescience energytransition climateaction ClimateCrisis warm globalviews headlamp climatemitigation Ruttecrisis climatecrisis
-
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
fiction
ABoringDystopia interactivefiction cyberpunk thehobbit fiction nonfiction flashfiction cyberpunk2020 genrefiction
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
gender
- transparantie transistors broketrans internationalwomensday2021 transwomen transformativejustice transcrowdfund sylvanasimons resistance transmission transgender caféLatte transdayofresistance mens vieillesse womensart blacktranslivesmatter female osi nonbinary womensday vantascape van blacktransmagic less nb trans nonbinarycommunity transpositivity transdayofvisibility lgbtqia transphobia transmitter women lgbt womenrock estradiol lgbtq queerartist KCHomelessUnion transfer transgenders pointlesslygendered queer transdayofvisbility genderQuiz gender genderqueerpositivity woman transrights transdayofrevenge
+ transparantie transistors transparenz broketrans internationalwomensday2021 transwomen transformativejustice transcrowdfund sylvanasimons resistance transmission transgender caféLatte transdayofresistance mens vieillesse womensart blacktranslivesmatter female osi nonbinary womensday vantascape van blacktransmagic less nb trans nonbinarycommunity transpositivity transdayofvisibility lgbtqia transphobia transmitter women lgbt bodypositive womenrock estradiol lgbtq queerartist KCHomelessUnion transfer transgenders pointlesslygendered queer transdayofvisbility genderQuiz gender genderqueerpositivity NonBinaryPositivity dagvandearbeid woman transrights transdayofrevenge
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
audio
- feed audioproduction pulseaudio audi feedbackd audiogames audiofeedback audio auditoriasocial
+ feed audiophile audioproduction feeds pulseaudio audi feedbackd audiogames audiofeedback audio auditoriasocial
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
garbage
- Anonymous cumbria documentation no QAnonAnonymous cum u ChanCulture
+ Anonymous cumbria documentation no QAnonAnonymous docu cum u ChanCulture
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
media
- livestreaming ip digitalmedia mustwatch sustainable transparency mediathek mianstreaming mainstreaming stream trad maistreaming selfsustainable kawaiipunkstreams mainstream films streaming weAreAllCrazy video streamdeck puns maiabeyrouti mixed sustainability diymedia film submedia theatlantic traditionalmedia videos Internetradio mediawatch mainstreamining newsmedia audiovideo videosynthesis filmnoir wikimedia mixedmedia railroads documentary streamers gstreamer tootstream taina ai mediawiki realmedia media independentmedia theintercept
+ livestreaming ip digitalmedia mustwatch sustainable transparency mediathek mianstreaming stream trad maistreaming selfsustainable kawaiipunkstreams mainstream films streaming weAreAllCrazy video streamdeck puns maiabeyrouti mixed sustainability diymedia Fairtrade film stummfilm submedia theatlantic traditionalmedia videos Internetradio mediawatch mainstreamining newsmedia audiovideo videosynthesis filmnoir wikimedia mixedmedia railroads documentary streamers gstreamer tootstream taina ai mediawiki realmedia media independentmedia theintercept
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
birds
RainbowBeeEater pigeon cawbird pigeonlover bird birdwatch birding birbposting birdwatching
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
ethics
- digitalethics ethicaltech ethics ethicallicense license ethical
+ digitalethics ethicaltech ethics ethicallicense ethicswashing license ethical
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
disability
- ableism disabled
+ ableism disabled ableismus
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
- privacy
- whatip PrivacyBook SearchHistory privacyaware dataprivacyday profiling what3words surveillancestate Privacy privacypolicy WhatsApp privacytoolsio makeprivacystick surveillancetech onlineprivacy developertools tools privacyredirect drugpolicy privacymatters policy privacyMatters whatsappprivacypolicy dataprivacy privacywashing privacy privacyinternational hat DataPrivacyDay2020 PrivacyFlaw ev nl WhatsappPrivacy
+ travel
+ tax travellers travel taxi airtravel
- Sat, 01 May 2021 11:58:46 UT
-
--
- podcasts
- podcasting IntergalacticWasabiHour podcast tilde postmarketOSpodcast tilderadio tildes podcasts tildeverse smallisbeautiful fertilizers PineTalk tilvids tildetown qtile
-
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
philosophy
post minimalism maximalist maximalism digitalminimalism philosophy stoic postmodernism minimalist
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
religion
- atheist neopagan pagan catholic paganism genesis SiddarthaGautama
+ atheist ama neopagan pagan catholic paganism genesis SiddarthaGautama
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
culture
etiquette
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
funding
- donate disabilitycrowdfund disabledcrowdfund alledoerferbleiben ethicalfunding mastercard netzfundstück fundraiser BreakWalledGardens ngizero fun oer zeroknowledge edge led zerohedge vkickstarter fungus fungi EntangledLife opencollective patreon
+ donate disabilitycrowdfund disabledcrowdfund oled alledoerferbleiben LeylaKhaled ethicalfunding mastercard netzfundstück fundraiser BreakWalledGardens membership ngizero fun oer zeroknowledge edge led zerohedge DefundLine3 vkickstarter fungiverse alledörferbleiben fungus SmallPiecesLooselyCoupled fungi EntangledLife opencollective patreon
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ health
+ water medical CoronaApp autism burnout Underunderstood cannabis hand medicine run treatment EmotionalFirstAid safeabortion4all maryjane organisierung autistic BlockBrunsbüttel running neurodivergent health motion crunchbang actuallyautistic meds marijuana suicideprevention mentalhealth postmortem H5N8 healthy autismmeme drugs neurodiverse grunge asperger autismus
+
+ Mon, 17 May 2021 20:49:17 UT
-
identity
boomer
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
licenses
- commongoods creativecommonsrocks tootle CommunitySource copyright creative netcommons common gpl plugplugplug copyrightlaw EthicalSource questioncopyright tragedyofthecommons cc0 creativecommons commongood cc creativetoot
+ commongoods creativecommonsrocks agplv3 tootle CommunitySource copyright creative netcommons common gpl plugplugplug copyrightlaw EthicalSource questioncopyright tragedyofthecommons cc0 creativecommons commongood cc creativetoot
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
political
- copservation ram progress slaughterhouse rog cops houseless joerogan house straming theGreenhouse teahouse progressivehouse techhouse clubhouse yayagram PDXdefendthehouseless pdxhouseless deephouse linguisticProgramming
+ copservation ram progress slaughterhouse rog cops houseless joerogan bibliogram house straming theGreenhouse teahouse progressivehouse techhouse clubhouse yayagram PDXdefendthehouseless pdxhouseless progress_note deephouse linguisticProgramming
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ organisations
+ foundation scpfoundation
+
+ Mon, 17 May 2021 20:49:17 UT
-
fashion
brasil fashionistas fashionesta bras fashionista fashion punkwear earrings socks patches feditats zebras
- Sat, 01 May 2021 11:58:46 UT
-
--
- techbros
- redbubble securedrop einfachredeneben coloredpencil redhat hackernews weareredhat red pencil reddit redis infrared redshift
-
- Sat, 01 May 2021 11:58:46 UT
-
--
- month
- april 1may july march chapril marchofrobots2021 october november august june blackherstorymonth december september may feburary jejune january marchofrobots blackhistorymonth march4justice month blacktheirstorymonth
-
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
welfare
universalcredit welfare socialwelfare credit
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ antisocial
+ stalking
+
+ Mon, 17 May 2021 20:49:17 UT
-
comedy
- laugh farce humour satire irony standup funny humor pun
+ laugh farce humour swisshumor satire irony standup funny humor pun
- Sat, 01 May 2021 11:58:46 UT
-
--
- health
- medical CoronaApp autism burnout Underunderstood cannabis medicine run treatment EmotionalFirstAid safeabortion4all maryjane organisierung autistic running neurodivergent health motion actuallyautistic meds marijuana suicideprevention mentalhealth H5N8 healthy autismmeme drugs neurodiverse grunge asperger autismus
-
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
introductions
- reintroductions newhere firsttoot recommends Introduction Introductions introductons introduction intro introductions
+ reintroductions newhere firsttoot recommends stt Introduction Introductions introductons introduction intro introductions
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
facts
- funfact unfa didyouknow lifehack
+ funfact didyouknow lifehack
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
ai
- machinelearning openai
+ machinelearning openai EthicsInAI
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
commons
- opennmsgroup open linkedopenactors openaccess openocd openengiadina opennms ess opensourcing openpublishing openworlds openwashing openinnovation opennmt
+ opennmsgroup open linkedopenactors openaccess openocd openengiadina opennms ess opensocial activisim openlibrary opensourcing innovation openpublishing InstantMessenger session openworlds extraction openwashing publicinterest besserorganisieren openinnovation opennmt act Bessa
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
education
- SchoolForAfrica techlearningcollective education teach learning languagelearning tutorial ec
+ SchoolForAfrica PhDstudent mitbewohnerin techlearningcollective tutorials education academics mit academia teach Lebensmittelfarbstoff learning languagelearning tutorial ec language
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
scifi
startrekdiscovery startrek bitwarden discover SoftwareJob LegDichNieMitSchwarzenKatzenAn starwars ds9 babylon NGIForward war babylon5
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
photography
pea landscapephotography landscapeart XSystem darktable peppercarrot speakers hippeastrum landscape
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
microcontroller
- e microcontroller Chatkontrolle troll arduinoide arduino
+ e microcontroller trolls Chatkontrolle troll arduinoide arduino
- Sat, 01 May 2021 11:58:46 UT
-
--
- obituaries
- lichtenberg tripadvisor rip JavaScriptSucks obit ecmascript raspberripi obituaries ber liberty
-
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
design
- userfriendly friendly
+ userfriendly friendly rf
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
help
- mastohelp helpwanted helpful help
+ mastohelp helpwanted helpful helpMeOutHere help
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
- travel
- travellers travel taxi airtravel
+ obituaries
+ tripadvisor rip JavaScriptSucks obit ecmascript keyenberg raspberripi überblick obituaries ber liberty
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
accessibility
a11y
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
election
Rainbowvote voted vote
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
moderation
fedblock
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
entertainment
legallyblonde watching Thundercat makingof entertainment me un nowwatching mandalorian themandalorian nt
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
languages
lojban gaelic
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
environment
- s clim climatechaos climateadaptation
+ s crisisclimatica clim climatechaos climateadaptation
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
organization
- conceptmap mindmapping mindmap notetoself pi
+ conceptmap mindmapping mapping mindmap notetoself pi
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
microcontrollers
esp32c3 esp8266 esp32
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
scotland
glasgow highlands edinburgh loch
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ technology
+ tools
+
+ Mon, 17 May 2021 20:49:17 UT
-
agriculture
farmers
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ skills
+ gardening baking
+
+ Mon, 17 May 2021 20:49:17 UT
-
france
Macronavirus
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
+
+-
+ memes
+ tired
+
+ Mon, 17 May 2021 20:49:17 UT
-
sailing
theBoatyard
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
parenting
dadposting
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
jewelry
bracelet
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
-
architecture
concrete
- Sat, 01 May 2021 11:58:46 UT
+ Mon, 17 May 2021 20:49:17 UT
diff --git a/roles.py b/roles.py
index 9e2672af2..a3d139971 100644
--- a/roles.py
+++ b/roles.py
@@ -54,6 +54,14 @@ def clearCounselorStatus(baseDir: str) -> None:
_clearRoleStatus(baseDir, 'editor')
+def clearArtistStatus(baseDir: str) -> None:
+ """Removes artist status from all accounts
+ This could be slow if there are many users, but only happens
+ rarely when artists are appointed or removed
+ """
+ _clearRoleStatus(baseDir, 'artist')
+
+
def clearModeratorStatus(baseDir: str) -> None:
"""Removes moderator status from all accounts
This could be slow if there are many users, but only happens
@@ -126,6 +134,8 @@ def _setActorRole(actorJson: {}, roleName: str) -> bool:
category = '27-3041.00'
elif 'counselor' in roleName:
category = '23-1022.00'
+ elif 'artist' in roleName:
+ category = '27-1024.00'
if not category:
return False
@@ -225,7 +235,8 @@ def setRole(baseDir: str, nickname: str, domain: str,
roleFiles = {
"moderator": "moderators.txt",
"editor": "editors.txt",
- "counselor": "counselors.txt"
+ "counselor": "counselors.txt",
+ "artist": "artists.txt"
}
actorJson = loadJson(actorFilename)
diff --git a/tests.py b/tests.py
index 6155b42eb..fc4ae487f 100644
--- a/tests.py
+++ b/tests.py
@@ -3706,6 +3706,7 @@ def testRoles() -> None:
assert actorHasRole(actorJson, "moderator")
assert not actorHasRole(actorJson, "editor")
assert not actorHasRole(actorJson, "counselor")
+ assert not actorHasRole(actorJson, "artist")
def runAllTests():
diff --git a/translations/ar.json b/translations/ar.json
index e06f1bf25..3c148225a 100644
--- a/translations/ar.json
+++ b/translations/ar.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "إظهار رقم الإصدار داخل البيانات الوصفية للمثيل",
"Joined": "تاريخ الانضمام",
"City for spoofed GPS image metadata": "مدينة للبيانات الوصفية لصور GPS المخادعة",
- "Occupation": "الاحتلال"
+ "Occupation": "الاحتلال",
+ "Artists": "الفنانين",
+ "Graphic Design": "التصميم الجرافيكي"
}
diff --git a/translations/ca.json b/translations/ca.json
index b7fbfdc6a..ac083d8b0 100644
--- a/translations/ca.json
+++ b/translations/ca.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Mostra el número de versió a les metadades de la instància",
"Joined": "Data d'unió",
"City for spoofed GPS image metadata": "Ciutat per a metadades d'imatges GPS falsificades",
- "Occupation": "Ocupació"
+ "Occupation": "Ocupació",
+ "Artists": "Artistes",
+ "Graphic Design": "Disseny gràfic"
}
diff --git a/translations/cy.json b/translations/cy.json
index 03a6dc09d..92be8ccfc 100644
--- a/translations/cy.json
+++ b/translations/cy.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Dangos rhif y fersiwn o fewn metadata",
"Joined": "Dyddiad ymuno",
"City for spoofed GPS image metadata": "Dinas ar gyfer metadata delwedd GPS spoofed",
- "Occupation": "Ngalwedigaeth"
+ "Occupation": "Ngalwedigaeth",
+ "Artists": "Artistiaid",
+ "Graphic Design": "Dylunio Graffig"
}
diff --git a/translations/de.json b/translations/de.json
index f193a603e..9d21db01f 100644
--- a/translations/de.json
+++ b/translations/de.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Versionsnummer in Instanzmetadaten anzeigen",
"Joined": "Verbundenes Datum",
"City for spoofed GPS image metadata": "Stadt für gefälschte GPS-Bildmetadaten",
- "Occupation": "Besetzung"
+ "Occupation": "Besetzung",
+ "Artists": "Künstler",
+ "Graphic Design": "Grafikdesign"
}
diff --git a/translations/en.json b/translations/en.json
index 3216f1d53..f7b950842 100644
--- a/translations/en.json
+++ b/translations/en.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Show version number within instance metadata",
"Joined": "Joined",
"City for spoofed GPS image metadata": "City for spoofed GPS image metadata",
- "Occupation": "Occupation"
+ "Occupation": "Occupation",
+ "Artists": "Artists",
+ "Graphic Design": "Graphic Design"
}
diff --git a/translations/es.json b/translations/es.json
index b966a4777..9f79db640 100644
--- a/translations/es.json
+++ b/translations/es.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Mostrar el número de versión dentro de los metadatos de la instancia",
"Joined": "Fecha unida",
"City for spoofed GPS image metadata": "Ciudad para metadatos de imagen GPS falsificados",
- "Occupation": "Ocupación"
+ "Occupation": "Ocupación",
+ "Artists": "Artistas",
+ "Graphic Design": "Diseño gráfico"
}
diff --git a/translations/fr.json b/translations/fr.json
index 197c319fa..bdc6e3280 100644
--- a/translations/fr.json
+++ b/translations/fr.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Afficher le numéro de version dans les métadonnées de l'instance",
"Joined": "Joint",
"City for spoofed GPS image metadata": "Ville pour les métadonnées d'image GPS falsifiées",
- "Occupation": "Occupation"
+ "Occupation": "Occupation",
+ "Artists": "Artistes",
+ "Graphic Design": "Conception graphique"
}
diff --git a/translations/ga.json b/translations/ga.json
index 549abadce..2755d94a0 100644
--- a/translations/ga.json
+++ b/translations/ga.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Taispeáin uimhir an leagain laistigh de mheiteashonraí",
"Joined": "Dáta comhcheangailte",
"City for spoofed GPS image metadata": "Cathair le haghaidh meiteashonraí íomhá GPS spoofed",
- "Occupation": "Slí bheatha"
+ "Occupation": "Slí bheatha",
+ "Artists": "Ealaíontóirí",
+ "Graphic Design": "Dearadh grafach"
}
diff --git a/translations/hi.json b/translations/hi.json
index 8d42d418c..77cd7bb76 100644
--- a/translations/hi.json
+++ b/translations/hi.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "उदाहरण मेटाडेटा के भीतर संस्करण संख्या दिखाएं",
"Joined": "दिनांक",
"City for spoofed GPS image metadata": "स्पूफ जीपीएस जीपीएस मेटाडेटा के लिए शहर",
- "Occupation": "व्यवसाय"
+ "Occupation": "व्यवसाय",
+ "Artists": "कलाकार की",
+ "Graphic Design": "ग्राफ़िक डिज़ाइन"
}
diff --git a/translations/it.json b/translations/it.json
index 3557bbd26..cd8b2cd25 100644
--- a/translations/it.json
+++ b/translations/it.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Mostra il numero di versione nei metadati dell'istanza",
"Joined": "Unito",
"City for spoofed GPS image metadata": "Città per metadati di immagini GPS falsificate",
- "Occupation": "Occupazione"
+ "Occupation": "Occupazione",
+ "Artists": "Artiste",
+ "Graphic Design": "Graphic design"
}
diff --git a/translations/ja.json b/translations/ja.json
index 04de4d1fd..25935464c 100644
--- a/translations/ja.json
+++ b/translations/ja.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "インスタンスメタデータ内にバージョン番号を表示する",
"Joined": "参加日",
"City for spoofed GPS image metadata": "なりすましGPS画像メタデータの都市",
- "Occupation": "職業"
+ "Occupation": "職業",
+ "Artists": "アーティスト",
+ "Graphic Design": "グラフィックデザイン"
}
diff --git a/translations/ku.json b/translations/ku.json
index bb69bf5e2..b4dd76fc2 100644
--- a/translations/ku.json
+++ b/translations/ku.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Di nav metadata mînakê de nimreya guhertoyê nîşan bide",
"Joined": "Beşdarbûna Dîrokê",
"City for spoofed GPS image metadata": "Bajar ji bo metadata wêneya GPS ya xapînok",
- "Occupation": "Sinet"
+ "Occupation": "Sinet",
+ "Artists": "Hunermend",
+ "Graphic Design": "Sêwirana grafîkî"
}
diff --git a/translations/oc.json b/translations/oc.json
index f9d2fe53b..b57a869f4 100644
--- a/translations/oc.json
+++ b/translations/oc.json
@@ -438,5 +438,7 @@
"Show version number within instance metadata": "Show version number within instance metadata",
"Joined": "Joined",
"City for spoofed GPS image metadata": "City for spoofed GPS image metadata",
- "Occupation": "Occupation"
+ "Occupation": "Occupation",
+ "Artists": "Artists",
+ "Graphic Design": "Graphic Design"
}
diff --git a/translations/pt.json b/translations/pt.json
index 956805c99..aa3508853 100644
--- a/translations/pt.json
+++ b/translations/pt.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Mostrar o número da versão nos metadados da instância",
"Joined": "Data juntada",
"City for spoofed GPS image metadata": "Cidade para metadados de imagem GPS falsificados",
- "Occupation": "Ocupação"
+ "Occupation": "Ocupação",
+ "Artists": "Artistas",
+ "Graphic Design": "Design gráfico"
}
diff --git a/translations/ru.json b/translations/ru.json
index 6a29ea88b..6aad20e8f 100644
--- a/translations/ru.json
+++ b/translations/ru.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "Показать номер версии в метаданных экземпляра",
"Joined": "Присоединенная дата",
"City for spoofed GPS image metadata": "Город для поддельных метаданных изображения GPS",
- "Occupation": "Занятие"
+ "Occupation": "Занятие",
+ "Artists": "Художники",
+ "Graphic Design": "Графический дизайн"
}
diff --git a/translations/zh.json b/translations/zh.json
index 80222724e..81287ecc1 100644
--- a/translations/zh.json
+++ b/translations/zh.json
@@ -442,5 +442,7 @@
"Show version number within instance metadata": "在实例元数据中显示版本号",
"Joined": "加入日期",
"City for spoofed GPS image metadata": "欺骗性GPS影像元数据的城市",
- "Occupation": "职业"
+ "Occupation": "职业",
+ "Artists": "艺人",
+ "Graphic Design": "平面设计"
}
diff --git a/utils.py b/utils.py
index c478158d7..0a54a3148 100644
--- a/utils.py
+++ b/utils.py
@@ -194,6 +194,34 @@ def isEditor(baseDir: str, nickname: str) -> bool:
return False
+def isArtist(baseDir: str, nickname: str) -> bool:
+ """Returns true if the given nickname is an artist
+ """
+ artistsFile = baseDir + '/accounts/artists.txt'
+
+ if not os.path.isfile(artistsFile):
+ adminName = getConfigParam(baseDir, 'admin')
+ if not adminName:
+ return False
+ if adminName == nickname:
+ return True
+ return False
+
+ with open(artistsFile, "r") as f:
+ lines = f.readlines()
+ if len(lines) == 0:
+ adminName = getConfigParam(baseDir, 'admin')
+ if not adminName:
+ return False
+ if adminName == nickname:
+ return True
+ for artist in lines:
+ artist = artist.strip('\n').strip('\r')
+ if artist == nickname:
+ return True
+ return False
+
+
def getImageExtensions() -> []:
"""Returns a list of the possible image file extensions
"""
diff --git a/webapp_profile.py b/webapp_profile.py
index 5ec33c1c9..40988462f 100644
--- a/webapp_profile.py
+++ b/webapp_profile.py
@@ -12,6 +12,7 @@ from utils import getOccupationName
from utils import getLockedAccount
from utils import hasUsersPath
from utils import getFullDomain
+from utils import isArtist
from utils import isDormant
from utils import getNicknameFromActor
from utils import getDomainFromActor
@@ -1292,6 +1293,49 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str,
peertubeStr = ''
adminNickname = getConfigParam(baseDir, 'admin')
+
+ if isArtist(baseDir, nickname) or \
+ path.startswith('/users/' + str(adminNickname) + '/'):
+ graphicsStr = '' + \
+ translate['Graphic Design'] + '
\n'
+ graphicsStr += ''
+
+ # Themes section
+ themes = getThemesList(baseDir)
+ themesDropdown += '
\n'
+ grayscaleFilename = \
+ baseDir + '/accounts/.grayscale'
+ grayscale = ''
+ if os.path.isfile(grayscaleFilename):
+ grayscale = 'checked'
+ themesDropdown += \
+ ' ' + translate['Grayscale'] + '
'
+ themesDropdown += '
'
+ if os.path.isfile(baseDir + '/fonts/custom.woff') or \
+ os.path.isfile(baseDir + '/fonts/custom.woff2') or \
+ os.path.isfile(baseDir + '/fonts/custom.otf') or \
+ os.path.isfile(baseDir + '/fonts/custom.ttf'):
+ themesDropdown += \
+ ' ' + \
+ translate['Remove the custom font'] + '
'
+ themeName = getConfigParam(baseDir, 'theme')
+ themesDropdown = \
+ themesDropdown.replace('
\n'
+
if adminNickname:
if path.startswith('/users/' + adminNickname + '/'):
# Instance details section
@@ -1346,40 +1390,6 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str,
'
\n'
- # Themes section
- themes = getThemesList(baseDir)
- themesDropdown += '
\n'
- grayscaleFilename = \
- baseDir + '/accounts/.grayscale'
- grayscale = ''
- if os.path.isfile(grayscaleFilename):
- grayscale = 'checked'
- themesDropdown += \
- ' ' + translate['Grayscale'] + '
'
- themesDropdown += '
'
- if os.path.isfile(baseDir + '/fonts/custom.woff') or \
- os.path.isfile(baseDir + '/fonts/custom.woff2') or \
- os.path.isfile(baseDir + '/fonts/custom.otf') or \
- os.path.isfile(baseDir + '/fonts/custom.ttf'):
- themesDropdown += \
- ' ' + \
- translate['Remove the custom font'] + '
'
- themeName = getConfigParam(baseDir, 'theme')
- themesDropdown = \
- themesDropdown.replace('