Search
413 results for “typelevel”
-
Hat jemand etwas Kleingeld übrig :mastocheeky:
#ICANN nimmt 2026 wieder Anträge für neue generische Top-Level-Domains entgegen | heise online https://www.heise.de/news/ICANN-nimmt-2026-wieder-Antraege-fuer-neue-generische-Top-Level-Domains-entgegen-11117426.html #gTLD #TLD #TopLevelDomain #genericTLD #genericTopLevelDomain
-
ICANN to Accept Applications for New Generic Top-Level Domains Again in 2026
After approximately 14 years, ICANN is once again issuing gTLDs for special domain endings like .bielefeld or .pc. However, this won't be cheap for applicants.
#Domain #gTLD #ICANN #Internet #Internetverwaltung #IT #Netze #TopLevelDomain #news
-
ICANN nimmt 2026 wieder Anträge für neue generische Top-Level-Domains entgegen
Nach rund 14 Jahren vergibt die ICANN erneut gTLD für spezielle Domain-Endungen wie .bielefeld oder .pc. Das wird aber nicht billig für die Antragsteller.
#Domain #gTLD #ICANN #Internet #Internetverwaltung #IT #Netze #TopLevelDomain #news
-
@YvanDaSilva
you can commit the update and then run
nix store diff-closures --derivation git+file://<path to your config flake>?rev=<full commit hash before update>#nixosConfigurations.<hostname>.config.system.build.toplevel git+file://<path to your config flake>?rev=<full commit hash after update>#nixosConfigurations.<hostname>.config.system.build.toplevel -
Okay the fastest workaround I found for now is:
# build laptop's system on the server (a lot already built, doesn't take long)
server$ nix build .#nixosConfigurations.$LAPTOP.config.system.build.toplevel)"# copy system manually from server to laptop
laptop$ nix copy --from ssh://server "$(nix eval --raw --apply builtins.toString .#nixosConfigurations."$(hostname)".config.system.build.toplevel)"
# then nixos-rebuild as usual
laptop$ nixos-rebuild --flake . --use-remote-sudo switch -
@roberth @arianvp Hell yeah! Thanks for the info! (and implementation 😎️)
Good to know I can just do `nix run unstable#nix -- .#nixosConfigurations.config.myhost.system.build.toplevel` as a temporary workaround.Curious how this is done. Will peep the implementation.
-
#Shakespeare said of a man who seemed all repressed and #unfeeling, “that man hath no #music in him.” How true it is because #musik lies down in the #limbicsystem; and if you cut off the #toplevelcortex you can still respond to music….and #feeling. You wonder why we remember #songsfromouryouth and still know the words? Because we still did not have a fully functioning, #repressiveneocortex; because we still responded to the #musicoutthere and in us. ... #Universe https://cigognenews.blogspot.com/2011/10/music-in-us.html #kultur
-
#Development #Reviews
New TLDs: not bad, actually · Why the debut of .zip and .mov as top-level domains has caused a stir https://ilo.im/12x3fe“The level of fear-mongering about .zip and .mov is just comical.” — Eric Lawrence
_____
#ZIP #MOV #TopLevelDomain #TLD #Domain #DNS #UiDesign #WebDesign #WebDevelopment #WebDev #Frontend #URL #Link #FileName #Collisions -
#Development #Reviews
The new .zip TLD is going to cause some problems · How to know whether ‘example.zip’ is an URL or a filename? https://ilo.im/12wwd2_____
#ZIP #TopLevelDomain #TLD #Domain #DNS #WebDevelopment #WebDev #Frontend #URL #Link #FileName #Collisions -
Inspired by clarity and minimalism, Frat makes your layouts look professional and sharp.
Let your words stand out with this versatile sans serif!#minimalism #cleandesign #fontinspiration #modernstyle #visualidentity #typelove
-
@bmf
Die hohe #Inflation hängt vor allem mit den exorbitanten Steigerungen der #profitmargins der #Energieversorger und #Ölkonzerne zusammen.
Selbst Banken wie die #ubs äußern das schon öffentlich:
https://www.ubs.com/global/en/wealth-management/insights/chief-investment-office/market-insights/paul-donovan/_jcr_content/mainpar/toplevelgrid_1847870123/col1/teaser_826301810_cop/linklist/link.0905296706.file/PS9jb250ZW50L2RhbS9hc3NldHMvd20vZ2xvYmFsL2Npby9tYXJrZXQtaW5zaWdodHMvZG9jL3doYXQtaXMtcHJvZml0LWxlZC1pbmZsYXRpb24tbWFyY2gtMjAyMy5wZGY=/what-is-profit-led-inflation-march-2023.pdf -
An obscure Emacs Lisp question:This might be a question for the mailing list instead, but I’m trying to implement buffer-local variables in my #EmacsLisp interpreter, but in my test programs, there seem to be no functional difference between the “toplevel default” and the “default” value of a variable at all. When reading the documentation, it says this:
A variable can be let-bound to a value. This makes its global value shadowed by the binding;
default-valuewill then return the value from that binding, not the global value, andset-defaultwill be prevented from setting the global value (it will change the let-bound value instead). The following two functions allow referencing the global value even if it’s shadowed by a let-binding.But the documentation seems to be wrong, but maybe I am missing something? Here is my test program:
(when (intern-soft 'x) (unintern 'x obarray)) (setq record nil) (defun record (where val) (setq record (cons (cons where val) record)) ) (defun record-comment (str) (setq record (cons str record)) ) (defun replay () (princ ";----------------------------\n") (princ "; lexical-binding: ") (princ lexical-binding) (terpri) (dolist (x (reverse record)) (cond ((stringp x) (princ x) (terpri)) (t (prin1 (car x)) (princ "; x => ") (prin1 (cdr x)) (terpri) )))) (record "lexical-binding" lexical-binding) (defvar x "global") (record 'x x) (make-local-variable 'x) (record '(make-local-variable 'x) x) (setq x "local") (record '(setq x "local") x) (record '(default-value 'x) (default-value 'x)) (set-default 'x "default") (record '(set-default 'x "default") x) (record '(default-value 'x) (default-value 'x)) (record '(default-toplevel-value 'x) (default-toplevel-value 'x)) (set-default-toplevel-value 'x "top-level") (record '(set-default-toplevel-value 'x "toplevel") x) (record '(default-value 'x) (default-value 'x)) (record '(default-toplevel-value 'x) (default-toplevel-value 'x)) (let ((x "inside-let-form")) (defvar x) (record '(let ((x "inside-let-form")) x) x) (setq x "let-local") (record '(let -- (setq x "let-local") x) x) (record '(let -- (default-value 'x)) (default-value 'x)) (set-default 'x "default") (record '(let -- (set-default 'x "default") x) x) (record '(let -- (default-value 'x)) (default-value 'x)) (record '(let -- (default-toplevel-value 'x)) (default-toplevel-value 'x)) (set-default-toplevel-value 'x "top-level") (record '(let -- (set-default-toplevel-value 'x "top-level")) x) (record '(let -- (default-value 'x)) (default-value 'x)) (record '(let -- (default-toplevel-value 'x)) (default-toplevel-value 'x)) ) (record-comment ";;after let") (record 'x x) (record '(default-value 'x) (default-value 'x)) (record '(default-toplevel-value 'x) (default-toplevel-value 'x)) (replay)When you look at the output of the program,
(default-value 'x)returns the same value as(default-toplevel-value 'x)regardless of whether it is inside of a let binding, and regardless of lexical or dynamic binding mode. Here is the above program’s output:;---------------------------- ; lexical-binding: t x; x => "global" (make-local-variable 'x); x => "global" (setq x "local"); x => "local" (default-value 'x); x => "global" (set-default 'x "default"); x => "local" (default-value 'x); x => "default" (default-toplevel-value 'x); x => "default" (set-default-toplevel-value 'x "toplevel"); x => "local" (default-value 'x); x => "top-level" (default-toplevel-value 'x); x => "top-level" (let ((x "inside-let-form")) x); x => "inside-let-form" (let -- (setq x "let-local") x); x => "let-local" (let -- (default-value 'x)); x => "top-level" (let -- (set-default 'x "default") x); x => "let-local" (let -- (default-value 'x)); x => "default" (let -- (default-toplevel-value 'x)); x => "default" (let -- (set-default-toplevel-value 'x "top-level")); x => "let-local" (let -- (default-value 'x)); x => "top-level" (let -- (default-toplevel-value 'x)); x => "top-level" ;;after let x; x => "local" (default-value 'x); x => "top-level" (default-toplevel-value 'x); x => "top-level" -
Had a great night watching the Levellers on Saturday, they knocked it out the park and was a great set list too.
#Levellers #levellerscollective #music #livemusic #liverpoolphilharmonic #liverpool #thelevellers
-
The Wolves are going to Liverpool to watch The Levellers tonight. Anyone else going? Got a favourite song? We're interested to see how many Levellers fans are on here.
#music #livemusic #liverpool #liverpoolphilharmonic #Levellers #thelevellers
-
The Sabres have little buzz as training camp begins | https://www.rawchili.com/nhl/196243/ #AlexTuch #Buffalo #BuffaloSabres #BuffaloSabresPersonnel #BuffaloSabresPlayers #BuffaloSabres #Hockey #IceHockey #IceHockeyLeagues #IceHockeyPlayers #NationalHockeyLeague #NationalHockeyLeaguePlayers #NationalHockeyLeagueTeams #NHL #PegulaSportsAndEntertainment #Sabres #sports #SportsHoldingCompaniesOfTheUnitedStates #SportsManagementCompanies #TopLevelSportsLeagues #TopTierIceHockeyLeagues #UkkoPekkaLuukkonen
-
Sabres' third-period rally rings hollow after third straight OT loss – Buffalo News https://www.rawchili.com/nhl/277813/ #AlexTuch #BostonBruins #BuffaloSabres #Hockey #IceHockey #IceHockeyLeagues #NationalHockeyLeague #NationalHockeyLeagueTeams #NhlSeasons #NhlTeamSeasons #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Walker’s contract extended | Sports https://www.rawchili.com/nhl/232405/ #Hockey #IceHockey #IceHockeyLeagues #NathanWalker #NationalHockeyLeague #NationalHockeyLeagueTeams #NationalHockeyLeagueTrophiesAndAwards #NHL #NHLPlayoffs #NhlSeasons #NhlTeamSeasons #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #SportsCompetitions #StanleyCup #StanleyCupPlayoffs #StanleyCupPlayoffsNHL #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Joe Morrow, Penguins’ 1st-round draft pick in 2011, signs in Poland | Sports https://www.rawchili.com/nhl/131328/ #Hockey #IceHockey #IceHockeyLeagues #IceHockeyTeams #JoeMorrow #NationalHockeyLeague #NationalHockeyLeagueTeams #NHL #NhlSeasons #NhlTeamSeasons #penguins #Pittsburgh #PittsburghPenguins #PittsburghPenguins #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #sports #SportsOrganizations #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Blues release six-game preseason schedule, with first game Sept. 20 https://www.rawchili.com/nhl/125580/ #Blues #ColumbusBlueJackets #Hockey #IceHockey #IceHockeyLeagues #IceHockeyTeams #NationalHockeyLeague #NationalHockeyLeagueDivisions #NationalHockeyLeagueTeams #NHL #NhlSeasons #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #sports #SportsOrganizations #St.Louis #St.LouisBlues #StLouis #StLouisBlues #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Worthy: Blues need a shake-up, but they also need to keep Robert Thomas in the fold – STLtoday.com https://www.rawchili.com/nhl/459467/ #Canada–unitedStatesSportsRelations #Hockey #IceHockey #IceHockeyLeagues #NationalHockeyLeague #NationalHockeyLeagueTeams #SanJoseSharks #sports #SportsOrganizations #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Mike Harrington: With every dominant win, Sabres' ceiling keeps getting higher – buffalonews.com https://www.rawchili.com/nhl/433506/ #BuffaloSabres #EdmontonOilers #FloridaPanthers #Hockey #IceHockey #IceHockeyLeagues #NationalHockeyLeague #NationalHockeyLeagueTeams #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #SportsOrganizations #TampaBayLightning #TopLevelSportsLeagues #TopTierIceHockeyLeagues #TorontoMapleLeafs
-
Inside the NHL: GM Jarmo Kekalainen maintains adults-in-the-room approach with Sabres' front office – Buffalo News https://www.rawchili.com/nhl/413670/ #BuffaloSabres #Hockey #IceHockey #IceHockeyLeagues #JarmoKekäläinen #KevynAdams #NationalHockeyLeague #NationalHockeyLeagueTeams #SanJoseSharks #SeasonsInAmericanIceHockey #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #SportsOrganizations #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Sabres associate GM Marc Bergevin ready to optimize organization – Buffalo News https://www.rawchili.com/nhl/407563/ #BuffaloSabres #Hockey #IceHockey #IceHockeyLeagues #LosAngelesKings #MarcBergevin #NationalHockeyLeague #NationalHockeyLeagueTeams #NationalHockeyLeagueTrophiesAndAwards #SeasonsInAmericanIceHockey #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #SportsOrganizations #StanleyCup #TampaBayLightning #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Mammoth beat Senators 3-1 hours after NHL awards Utah 2027 Winter Classic | National Sports https://www.rawchili.com/nhl/402058/ #Hockey #IceHockey #IceHockeyLeagues #LeeviMeriläinen #NationalHockeyLeague #NationalHockeyLeagueTeams #NHL #NHLWinterClassic #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #SportsOrganizations #TopLevelSportsLeagues #TopTierIceHockeyLeagues #utah #UtahHC #UtahHockeyClub #UtahHC #UtahHockeyClub
-
Sabres are NHL's choice and announcement about draft in Buffalo is coming next week – Buffalo News https://www.rawchili.com/nhl/400188/ #BuffaloSabres #Hockey #IceHockey #IceHockeyLeagues #JackEichel #KeybankCenter #NationalHockeyLeague #NationalHockeyLeagueTeams #SeasonsInAmericanIceHockey #sports #SportsOrganizations #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Mammoth beat Senators 3-1 hours after NHL awards Utah 2027 Winter Classic | National Sports https://www.rawchili.com/nhl/397056/ #Hockey #IceHockey #IceHockeyLeagues #LeeviMeriläinen #NationalHockeyLeague #NationalHockeyLeagueTeams #NHL #NHLWinterClassic #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #SportsOrganizations #TopLevelSportsLeagues #TopTierIceHockeyLeagues #utah #UtahHC #UtahHockeyClub #UtahHC #UtahHockeyClub
-
Let’s bounce: How the Buffalo Sabres must sustain winning ways in return home – Buffalo News https://www.rawchili.com/nhl/394713/ #BostonBruins #BuffaloSabres #EdmontonOilers #Hockey #IceHockey #IceHockeyLeagues #NationalHockeyLeague #NationalHockeyLeagueTeams #NewYorkRangers #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #SportsOrganizations #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Flames’ Beecher, Jets’ Stanley suspended one game each for roughing | National Sports https://www.rawchili.com/nhl/391006/ #CalgaryFlames #Hockey #IceHockey #IceHockeyLeagues #Jets #NashvillePredators #NationalHockeyLeague #NationalHockeyLeagueTeams #NHL #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #SeasonsInIceHockey #sports #SportsManagementCompanies #SportsOrganizations #TopLevelSportsLeagues #TopTierIceHockeyLeagues #Winnipeg #WinnipegJets #WinnipegJets
-
Sabres recap: Make it 10 in a row after 4-1 win at Dallas – Buffalo News https://www.rawchili.com/nhl/385409/ #BuffaloSabres #DallasStars #Hockey #IceHockey #IceHockeyLeagues #IceHockeyTeams #NationalHockeyLeague #NationalHockeyLeagueDivisions #NationalHockeyLeagueTeams #PegulaSportsAndEntertainment #sports #SportsHoldingCompaniesOfTheUnitedStates #SportsManagementCompanies #SportsOrganizations #TageThompson #TopLevelSportsLeagues #TopTierIceHockeyLeagues
-
Ice Time podcast: The Sabres are hot; Olympics talk; Alex Lyon's status and more – Buffalo News https://www.rawchili.com/nhl/384219/ #BuffaloSabres #Hockey #IceHockey #IceHockeyLeagues #NationalHockeyLeague #NationalHockeyLeagueTeams #NationalHockeyLeagueTrophiesAndAwards #SeasonsInAmericanIceHockey #SeasonsInAmericanSport #SeasonsInCanadianIceHockey #sports #SportsManagementCompanies #SportsOrganizations #StanleyCupPlayoffs #TopLevelSportsLeagues #TopTierIceHockeyLeagues