Search results

  1. C

    Το 50% των καταστημάτων που βγάζουν έξω τραπεζοκαθίσματα δεν έχει άδεια

    https://www.businessnews.gr/ellada/item/313211-elegktiko-synedrio-to-50-ton-katastimaton-pou-vgazoun-ekso-trapezokathismata-den-exei-adeia-apo-tous-dimous
  2. C

    Estrogen - A trip report

    https://smoothbrains.net/posts/2025-06-15-estrogen.html (mirror) #estrogen #estradiol
  3. C

    EU Eyes Ditching Microsoft Azure for France OVHcloud

    https://www.euractiv.com/section/tech/news/scoop-commission-eyes-ditching-microsoft-azure-for-frances-ovhcloud-over-digital-sovereignty-fears/
  4. C

    EU just told Google - Enough is enough and fined them €4B

    https://euroweeklynews.com/2025/06/20/the-eu-just-told-google-enough-is-enough-and-fined-them-e4b/
  5. C

    KVM

    ^crocs, after use, many times misfunctioning getting a green layer switching back&forth sometimes without success, have to plug the cable direct! :( A trick at least to share one monitor is this to find a monitor has multiple input ports (ex VGA & HDMI), tested on this and working. Monitors by...
  6. C

    Change the implementation of an interface at runtime

    alternative - Using a Factory Pattern //Define a Factory Interface public interface IkoalaFactory { Ikoala Create(); } //Implement the Factory public class KoalaFactory : IkoalaFactory { private readonly IServiceProvider _serviceProvider; public KoalaFactory(IServiceProvider...
  7. C

    Change the implementation of an interface at runtime

    AddSingleton : shared throughout the entire application lifetime AddTransient : Transient services are created each time they are requested from the DI container. This means that every time you resolve the service, a new instance is created. AddScoped : New instance is created for each HTTP...
  8. C

    Danish Ministry of Digitalization Is Switching to Linux and LibreOffice

    https://www.omgubuntu.co.uk/2025/06/denmark-government-replaces-microsoft-with-linux-libreoffice
  9. C

    Dapper

    How to map a one to many tsql to class (How to map a join to class) with Dapper public async Task<IEnumerable<SalesOrder>> SalesOrdersOverMinAmountDue(int minimumAmount) { var sql = @"SELECT soh.SalesOrderID, soh.OrderDate, soh.TotalDue...
  10. C

    AOSP project is coming to an end

    https://9to5google.com/2025/06/12/android-open-source-project-pixel-change/
  11. C

    Ηλεκτροκίνητο μονοθέσιο αυτοκίνητο από τους φοιτητές του Παν. Θεσσαλίας

    https://www.businessnews.gr/auto/item/312287-to-proto-ilektrokinito-monothesio-aftokinito-apo-tous-foitites-tou-pan-thessalias
  12. C

    Meta - Shut Down Your Invasive AI Discover Feed, Now

    https://www.mozillafoundation.org/en/campaigns/meta-shut-down-your-invasive-ai-discover-feed-now/
  13. C

    Meta pauses mobile port tracking tech on Android after researchers cry foul

    https://www.theregister.com/2025/06/03/meta_pauses_android_tracking_tech/
  14. C

    Introduction to .NET Microservices (.NET 8)

  15. C

    The truth about soft plastic recycling points at supermarkets

    https://www.everydayplastic.org/softplastic
  16. C

    Portable espresso

    Wacaco picopresso (review) - stainless steel ( > 100e ) - weight : 350gr | coffee : 15gr | 18 bar - skroutz minipresso gr2 (review) [2] - plastic ( < 70e ) - weight : 285gr | coffee : 8-12gr | 18 bar - skroutz minipresso gr (review) - plastic ( < 60e ) - weight : 360gr | coffee : 8g | 8 bar -...
  17. C

    Just Get More Fiber!

    GPT: The sensitivity of an individual's digestive system can vary widely due to several factors, and this can influence how they react to freshly cooked versus reheated food. Here are some key points to consider: 1. Digestive Enzyme Activity Freshly Cooked Food: When food is freshly cooked, it...
  18. C

    OAUTH2 explained

    Google present it as Microsoft present it as ref - https://github.com/robocorp/example-oauth-email Limi labs OAuth 2.0 with Office365 (microsoft IMAP / POP3 connectivity analyzer) OAuth 2.0 with Gmail EmailArchitect Retrieve email using Gmail OAuth 2.0 Retrieve email using Microsoft...
  19. C

    Meeting President of Burkina Faso Ibrahim Traore

    DOB : 1988 https://en.wikipedia.org/wiki/Ibrahim_Traoré Inside the digital cult glorifying Burkina Faso military leader https://www.theafricareport.com/383198
  20. C

    insert record with bind parameters and get the new id on mssql

    Function AddTeam(user) Dim rs, sql, cmd dim adCmdText, adInteger, adVarWChar, adDBTimeStamp, adParamInput, adParamOutput adInteger = 3 adCmdText = 1 adVarWChar = 202 adParamInput = 1 adParamOutput = 2 adDBTimeStamp = 135 'dummy sql to get the...
Top