Forwarded from Open Source News
EU Open Tech Week
Home - EU Open Source Week
Forwarded from Open Source News
Анализ скорости ЦП: как загрузка влияет на производительность – The GitHub Blog
Breaking down CPU speed: How utilization impacts performance – The GitHub Blog .
The GitHub Blog
Breaking down CPU speed: How utilization impacts performance
The Performance Engineering team at GitHub assessed how CPU performance degrades as utilization increases and how this relates to capacity.
👍1
Forwarded from Open Source News
Показать HN: Я создал Syphon, переключатель приложений и окон для любителей клавиатуры
Show HN: I made Syphon, an app and window switcher for keyboard enthusiasts .
Roey Biran
Syphon — Roey Biran
Syphon is an application and window switcher designed for keyboard enthusiasts.
👍1🔥1👀1
Как думаете как скоро её можно будет найти на наших любимых бесплатных ресурсах? 😁
Please open Telegram to view this post
VIEW IN TELEGRAM
😁2👍1🔥1
This media is not supported in your browser
VIEW IN TELEGRAM
Анализатор файлов, оптимизированный для приема LLM без потерь 🧠 Анализирует PDF-файлы, Docx, PPTx в формате, идеально подходящем для LLM.
👍2👀2
Please open Telegram to view this post
VIEW IN TELEGRAM
Semafor
‘Ten septillion years’: Google makes another quantum computing breakthrough
With a new chip and a breakthrough in error correction, Google says the road map to a practical quantum computer has never been clearer.
Please open Telegram to view this post
VIEW IN TELEGRAM
www.oldmapsonline.org
TimeMap.org - World History Atlas
The easy-to-use getaway to historical maps in libraries around the world.
🔥2❤1😁1
JDownloader — это бесплатный инструмент управления загрузками с открытым исходным кодом и огромным сообществом, который делает загрузку настолько простой и быстрой, насколько это должно быть. Пользователи могут запускать, останавливать или приостанавливать загрузки, устанавливать ограничения пропускной способности, автоматически извлекать архивы и многое другое.
👍3🔥1🤩1
This media is not supported in your browser
VIEW IN TELEGRAM
ImPlot3D – библиотека 3D-графиков для Dear ImGui
from colorama import * # To change font colors (https://github.com/tartley/colorama)
from random import randint
width = 25 # Tree width
body_height = 25 # Height without stand
full_height = 31 # Total height
tree = ''
for x in range(1, full_height, 2):
s = ''
center = int((width-1)/2)
padding = center-int((x-1)/2)
print('\n', end='')
if x == 1 :
print(' '*padding, end='')
print(Fore.RED + '*', end='')
elif x < body_height:
print(' '*padding, end='')
for y in range(0,x):
b = randint(0, width) # Location to add random decoration 1
a = randint(0, width) # Add random decoration 2
c = randint(0, width) # Add random decoration 3
if y==b:
print(Fore.YELLOW + 'o', end='')
elif y==a:
print(Fore.CYAN + '@', end='')
elif y==c:
print(Fore.RED + '+', end='')
else:
print(Fore.GREEN + '^', end='')
elif x == body_height:
print(' '*padding, end='')
print(Fore.BLUE + '#'*width, end='')
elif x > body_height and x < full_height:
print(' '*center, end='')
print(Fore.MAGENTA + 'II', end='')
print('\n', end='')
print(("~"*width))
print(Fore.RED + " MERRY CHRISTMAS ")
print(Fore.RED + " AND ")
print(Fore.RED + " HAPPY HOLIDAYS ! ")
print(("~"*width))
Please open Telegram to view this post
VIEW IN TELEGRAM
👍2❤1🔥1🎄1