home.social

#minimum — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #minimum, aggregated by home.social.

fetched live
  1. #MissKittyPolitics
    None of it is right but they don't deserve protection until they protect us. We can talk about what it means, but they have to shut down #ICE at minimum. They have to force, through backroom negotiations WITH OR ELSE'S, for Trump to produce #healthcare for everybody. #MINIMUM.

    RE: https://bsky.app/profile/did:plc:uiffdv3gnj3koycqzkpxvfla/post/3mqmuzmh7h22t

  2. #MissKittyPolitics
    None of it is right but they don't deserve protection until they protect us. We can talk about what it means, but they have to shut down #ICE at minimum. They have to force, through backroom negotiations WITH OR ELSE'S, for Trump to produce #healthcare for everybody. #MINIMUM.

    RE: https://bsky.app/profile/did:plc:uiffdv3gnj3koycqzkpxvfla/post/3mqmuzmh7h22t

  3. CW: Zum Abschluss den Quelltext

    #!/usr/bin/env python3
    # -*- coding: utf-8 -*-
    """
    Created 2021
    @author: Scientists4Future Leipzig
    """

    ### Die Pakete einbinden
    import numpy as np
    import pandas as pd
    import matplotlib.pyplot as plt
    from matplotlib.colors import ListedColormap

    ## Vorbereitung: Lege die Region fest:
    region = 'Deutschland'
    #region = 'Sachsen'

    ## Diese Regionen Stehen zur Verfügung:
    # 1:'Sachsen',2:'Deutschland',3:'Brandenburg/Berlin', 4:'Brandenburg',
    # 5:'Baden-Wuerttemberg', 6:'Bayern', 7:'Hessen', 8:'Mecklenburg-Vorpommern',
    # 9:'Niedersachsen', 10:'Niedersachsen/Hamburg/Bremen',
    # 11:'Nordrhein-Westfalen', 12:'Rheinland-Pfalz', 13:'Schleswig-Holstein',
    # 14:'Saarland', 15:'Sachsen-Anhalt',
    # 16:'Thueringen/Sachsen-Anhalt', 17:'Thueringen'}

    ### Ed Hawkins Farben einbauen
    cmap = ListedColormap([
    '#08306b', '#08519c', '#2171b5', '#4292c6',
    '#6baed6', '#9ecae1', '#c6dbef', '#deebf7',
    '#fee0d2', '#fcbba1', '#fc9272', '#fb6a4a',
    '#ef3b2c', '#cb181d', '#a50f15', '#67000d',
    ])

    ### Daten von Deutschen Wetterdienst DWD holen:
    link = "opendata.dwd.de/climate_enviro"
    data = pd.read_table(link,skiprows=1, sep=';')

    ### Definitionen für die Berechnungen:
    # Referenzzeitraum für Mittelwertberechnung: 1971 - 2000 nach Definition von Ed Hawkins (showyourstripes.info/faq)
    ref_min = 1971
    ref_max = 2000
    ref_data = data[(data['Jahr']>=ref_min) & (data['Jahr']<=ref_max)]

    # Referenzzeitraum für die Standardabweichung für die entsprechende Farbskala
    ref_min_std = 1901
    ref_max_std = 2000
    ref_data_std = data[(data['Jahr']>=ref_min_std) & (data['Jahr']<=ref_max_std)]
    std = ref_data_std[region].std()
    #Minimum und Maximumwerte für die Farbskala. +- 2.6 / +- 1.7
    vmin = -2.6*std
    vmax = 2.6*std

    ## Berechnungen
    # Temperaturanomalie berechnen: Temperaturdaten der Region Minus den Mittelwert des Referenzzeitraums
    temps = data[region] - ref_data[region].mean()
    # Daten übereinander Stapeln, damit es später gezeichnet werden kann.
    stacked_temps = np.stack((temps, temps))

    ### Erstellung der Abbildung
    # Erzeugen der Abbildung selber mit Größe 16 Zoll Breite, 9 Zoll Höhe
    fig = plt.figure(figsize=(16,9))
    # Alles an Achsen und Beschriftungen ausschalten, damit nur die Streifen gezeigt werden.
    plt.gca().set_axis_off()
    plt.subplots_adjust(top = 1, bottom = 0, right = 1, left = 0, hspace = 0, wspace = 0)
    plt.margins(0,0)
    plt.gca().xaxis.set_major_locator(plt.NullLocator())
    plt.gca().yaxis.set_major_locator(plt.NullLocator())

    # Streifen Zeichnen
    img = plt.imshow(stacked_temps, cmap=cmap, aspect='auto', vmin=vmin, vmax=vmax, interpolation='none') #

    # Textbeschriftung, Position in der Mitte
    text = 'Temperaturanomalien in ' + region + '\nvon ' + str(data['Jahr'].min()) + ' bis ' + str(data['Jahr'].max())
    plt.text((data['Jahr'].max()-data['Jahr'].min())/2, 1.4, text, fontsize=44, fontweight='bold', color='black', alpha=0.8,ha='center')

    # Als Datei abspreichern
    plt.savefig("warmingstripes_"+temps.name+'_'+str(data['Jahr'].min())+'-'+str(data['Jahr'].max())+".png", bbox_inches = 'tight', pad_inches = 0)#, dpi=300)

  4. CW: Zum Abschluss den Quelltext

    #!/usr/bin/env python3
    # -*- coding: utf-8 -*-
    """
    Created 2021
    @author: Scientists4Future Leipzig
    """

    ### Die Pakete einbinden
    import numpy as np
    import pandas as pd
    import matplotlib.pyplot as plt
    from matplotlib.colors import ListedColormap

    ## Vorbereitung: Lege die Region fest:
    region = 'Deutschland'
    #region = 'Sachsen'

    ## Diese Regionen Stehen zur Verfügung:
    # 1:'Sachsen',2:'Deutschland',3:'Brandenburg/Berlin', 4:'Brandenburg',
    # 5:'Baden-Wuerttemberg', 6:'Bayern', 7:'Hessen', 8:'Mecklenburg-Vorpommern',
    # 9:'Niedersachsen', 10:'Niedersachsen/Hamburg/Bremen',
    # 11:'Nordrhein-Westfalen', 12:'Rheinland-Pfalz', 13:'Schleswig-Holstein',
    # 14:'Saarland', 15:'Sachsen-Anhalt',
    # 16:'Thueringen/Sachsen-Anhalt', 17:'Thueringen'}

    ### Ed Hawkins Farben einbauen
    cmap = ListedColormap([
    '#08306b', '#08519c', '#2171b5', '#4292c6',
    '#6baed6', '#9ecae1', '#c6dbef', '#deebf7',
    '#fee0d2', '#fcbba1', '#fc9272', '#fb6a4a',
    '#ef3b2c', '#cb181d', '#a50f15', '#67000d',
    ])

    ### Daten von Deutschen Wetterdienst DWD holen:
    link = "opendata.dwd.de/climate_enviro"
    data = pd.read_table(link,skiprows=1, sep=';')

    ### Definitionen für die Berechnungen:
    # Referenzzeitraum für Mittelwertberechnung: 1971 - 2000 nach Definition von Ed Hawkins (showyourstripes.info/faq)
    ref_min = 1971
    ref_max = 2000
    ref_data = data[(data['Jahr']>=ref_min) & (data['Jahr']<=ref_max)]

    # Referenzzeitraum für die Standardabweichung für die entsprechende Farbskala
    ref_min_std = 1901
    ref_max_std = 2000
    ref_data_std = data[(data['Jahr']>=ref_min_std) & (data['Jahr']<=ref_max_std)]
    std = ref_data_std[region].std()
    #Minimum und Maximumwerte für die Farbskala. +- 2.6 / +- 1.7
    vmin = -2.6*std
    vmax = 2.6*std

    ## Berechnungen
    # Temperaturanomalie berechnen: Temperaturdaten der Region Minus den Mittelwert des Referenzzeitraums
    temps = data[region] - ref_data[region].mean()
    # Daten übereinander Stapeln, damit es später gezeichnet werden kann.
    stacked_temps = np.stack((temps, temps))

    ### Erstellung der Abbildung
    # Erzeugen der Abbildung selber mit Größe 16 Zoll Breite, 9 Zoll Höhe
    fig = plt.figure(figsize=(16,9))
    # Alles an Achsen und Beschriftungen ausschalten, damit nur die Streifen gezeigt werden.
    plt.gca().set_axis_off()
    plt.subplots_adjust(top = 1, bottom = 0, right = 1, left = 0, hspace = 0, wspace = 0)
    plt.margins(0,0)
    plt.gca().xaxis.set_major_locator(plt.NullLocator())
    plt.gca().yaxis.set_major_locator(plt.NullLocator())

    # Streifen Zeichnen
    img = plt.imshow(stacked_temps, cmap=cmap, aspect='auto', vmin=vmin, vmax=vmax, interpolation='none') #

    # Textbeschriftung, Position in der Mitte
    text = 'Temperaturanomalien in ' + region + '\nvon ' + str(data['Jahr'].min()) + ' bis ' + str(data['Jahr'].max())
    plt.text((data['Jahr'].max()-data['Jahr'].min())/2, 1.4, text, fontsize=44, fontweight='bold', color='black', alpha=0.8,ha='center')

    # Als Datei abspreichern
    plt.savefig("warmingstripes_"+temps.name+'_'+str(data['Jahr'].min())+'-'+str(data['Jahr'].max())+".png", bbox_inches = 'tight', pad_inches = 0)#, dpi=300)

  5. theguardian.com/politics/live/. "Labour will also make sure the #minimum #wage is a genuine #living wage. We will change the remit of the independent Low Pay Commission so for the first time it accounts for the #cost of #living. #Labour will also remove the #discriminatory #age bands, so all #adults are entitled to the same minimum wage, delivering a #pay rise to hundreds of thousands of #workers across the #UK." (2024 Labour #Manifesto.) It was a LIE!

  6. theguardian.com/politics/live/. "Labour will also make sure the #minimum #wage is a genuine #living wage. We will change the remit of the independent Low Pay Commission so for the first time it accounts for the #cost of #living. #Labour will also remove the #discriminatory #age bands, so all #adults are entitled to the same minimum wage, delivering a #pay rise to hundreds of thousands of #workers across the #UK." (2024 Labour #Manifesto.) It was a LIE!

  7. Can Your PC Run GTA 6? Expected System Requirements

    Wondering if your PC can run GTA 6? Check the expected GTA 6 system requirements for PC, including GPU, RAM, SSD, and performance tips.

    Read more: mastanet.com/article/gta-6-pc-

    #gta #6 #pc #requirements #system #can #my #run #specs #recommended #minimum #gpu #ram #performance #dlss

  8. #WritersCoffeeClub  – 21st May. What targets do you set for yourself? To what frequency?

    I set targets for myself all the time. A project I am working on is to write down a lot of events that have happened over my lifetime.  I have a #minimum #goal of #writing at least three pages every day, with a more realistic goal of finishing whatever event / topic I have chosen for that day.

    I also have recently started working writing #essays.  These are first #drafts being #written in long form. For this project I have a 5-7 page per day goal.  The idea being that I can hopefully complete a draft every 3–5 days.

  9. #WritersCoffeeClub  – 21st May. What targets do you set for yourself? To what frequency?

    I set targets for myself all the time. A project I am working on is to write down a lot of events that have happened over my lifetime.  I have a #minimum #goal of #writing at least three pages every day, with a more realistic goal of finishing whatever event / topic I have chosen for that day.

    I also have recently started working writing #essays.  These are first #drafts being #written in long form. For this project I have a 5-7 page per day goal.  The idea being that I can hopefully complete a draft every 3–5 days.

  10. The Association of Municipal Companies (VKU) has urged the Federal Government to lower the electricity tax to the European minimum ahead of the coalition talks... news.osna.fm/?p=45595 | #news #electricity #european #government #minimum

  11. The Association of Municipal Companies (VKU) has urged the Federal Government to lower the electricity tax to the European minimum ahead of the coalition talks... news.osna.fm/?p=45595 | #news #electricity #european #government #minimum

  12. Road closures and damage to shops during the general strike in the Basque Country and Navarre to demand a minimum wage of 1,500 euros per month.

    The majority of Basque trade unions (ELA, LAB and other related organizations) took to the streets of the Basque Country and Navarre this Tuesday, as part of a general strike, to demand their own minimum interprofessional wage (SMI) and to raise it t…#road #closures #and #damage #to #shops #during #the #general #strike #in #basque #country #navarre #demand #minimum #wage #of #1 #500 #euros #month
    Road closures and damage to shops during the general strike in the Basque Country and Navarre to demand a minimum wage of 1,500 euros per month

  13. Verdi, the services union, has called on workers at the cinema chains Cinestar and UCI to stage a warning strike during the Berlin International Film Festival w... news.osna.fm/?p=34425 | #news #berlinale #cinestar #fight #minimum

  14. If we fix everything except the slope (w),
    the cost becomes a function of w.

    Plot it — and you get a U-shaped curve with a clear minimum.

    #minimum #function #descent

  15. Quad Bike Minimum Configuration: Everything You Need to Know

    Quad Bike Minimum Configuration: An Overview

    When it comes to quad bikes, having the right configuration is crucial for a safe and enjoyable riding experience. But what are the essential features you should look for in a quad bike? In this article, we'll break down the minimum configuration you ...

    🔗 userreview.net/en/content/quad

    #Quad Bike #Minimum Configuration #Safety

  16. My parents have #lenovo with an #intel i5 5th Gen #CPU in it. It's comfortably above the #minimum system requirements for #windows11. It even has #tpm 2.0. It's all they need. But for some fucked up reason the fuckwits at #microsoft say this CPU is not supported. What's wrong with you? 😡 It ran without problem for 5 years and it probably would go another 3 or even 5 years. And here I sit trying to live a #sustainable lifestyle, being a good little citizen, not flying, no care, eating as little animal products as possible, recycling crap and the mfkrs at Microsoft can just declare millions of devices as #ewaste. Fuck each and every executive at Microsoft in particular and individually and every hypocritically politician blaming the climate crisis on individual comsumers to boot.

  17. Oot and aboot enjoying the warm weather and I bump into a dear old friend, a director/ producer type, on break between shows at the club. He offered me two gigs in October! We shall see, will get more deets tonight.
    #midtown #Manhattan #comedy #club #two #drink #minimum

  18. Oot and aboot enjoying the warm weather and I bump into a dear old friend, a director/ producer type, on break between shows at the club. He offered me two gigs in October! We shall see, will get more deets tonight.
    #midtown #Manhattan #comedy #club #two #drink #minimum

  19. 2) The proffer interview recording of Maxwell by Trump’s former #criminal #defense l#awyer now Dep. #AG #ToddBlanche was released today & (Surprise!) she said #Trump did nothing wrong: “The president was never inappropriate with anybody. And the times that I was with him, he was a gentleman in all respects.”… And right after this interview, #Ghislaine Maxwell became the only #convicted #sexoffender in #US to be transferred to a #minimum #security #ClubFed and shot to the top of the #pardon list.

  20. 2) The proffer interview recording of Maxwell by Trump’s former #criminal #defense l#awyer now Dep. #AG #ToddBlanche was released today & (Surprise!) she said #Trump did nothing wrong: “The president was never inappropriate with anybody. And the times that I was with him, he was a gentleman in all respects.”… And right after this interview, #Ghislaine Maxwell became the only #convicted #sexoffender in #US to be transferred to a #minimum #security #ClubFed and shot to the top of the #pardon list.

  21. Perhaps
    since every action has an equal and opposite effect
    the #USA after #Trump debacle and horror
    will have -true- #Democracy
    #free #National #Medical Care
    (as in ALL civilized nations)
    an acceptable "#minimum #wage"
    and true integration.

    Vote better (When you can vote) next time.

  22. Kroger is shuttering stores temporarily to pressure union to concede. Their offer is below the poverty levels set by the state! Their CEO took $15.4M home last year (450 times their average employee) and the company announced 7.5B in stock buybacks!! But now they cry poor, and want to stiff the workers.
    #Teamsters #union #pride #fair #wages #job #security #slow #walking #negotiations #pay #below #minimum #wage #Kroger #greed #grocery #price #eggs #trucks #food #inflation thestreet.com/retail/kroger-fa

  23. On #hiring and #interviewing...

    Many ask for it, but no #employer has a legitimate need to know your #salary history. Feel free to decline to provide that; it's none of their business.

    Employers say "Oh, but we need to know it. If we offer too little, they might decline our offer!". It's B.S.

    If they want to know whether you'll decline an offer, they can make an #offer. You'll either accept it, decline it, or offer to negotiate it. That's how negotiation works, and an offer of employment is absolutely a #negotiation.

    The real reason they want this information is because they desperately want to avoid accidentally offering you more than the #minimum amount you will accept. If the position is worth $X to the company, they don't want to offer you $X. They want to offer you $Y, the lowest possible number that keeps you interested in the position. If they don't know what you made in your last job, figuring that number out is much, much harder. Stick to your guns. Your value to the company shouldn't be "approximately what my last position was worth to my previous company".

    Push back. If someone from #HR tells you "Oh, but salary history is part of our standard process", politely decline. If they want to #hire you, they'll skip that step. And if they won't modify their #process for your circumstances, maybe you don't want to work for that company, because they won't be willing to vary any of their other standard processes even if your needs require it.

  24. @vosje62 Ik denk dat #Madlener qua #juridisch aspect gelijk heeft. Dan maar een #helmplicht voor allen en vooral een #minimum leeftijd. Veertien vind ik nog veel te jong. Iets met hersentjes die nog niet volgroeid zijn.

    En nog los daarvan: er zijn autootjes te koop waar je niet eens een #rijbewijs voor nodig hebt. Reden waarom deze autootjes niet massaal over de #toonbank gaan? De #prijs