York, to random German
@York@social.tchncs.de avatar

Weil #Outlook in #Office2016 so fürchterlich altbacksch aussah, haben viele Kolleg:innen aus Verzweiflung stattdessen die #Webapp https://outlook.office.com/mail/ im #Browser benutzt. Aber nun ist die Firma auf #Microsoft365 gewechselt, und in dessen Outlook gibt es den Schalter "Das neue Outlook". Damit sieht die #Desktop-Version nun genauso aus wie die Webapp. Wahrscheinlich ist es intern dieselbe Webapp, denn das About trennt nun "Outlook-Version" (1.2023.719.200) und "Clientversion" (20230721005.10).

York,
@York@social.tchncs.de avatar

Ich erzähle Euch das alles, weil es neu für mich ist, da ich mich selten mit beschäftige. Man kann mit neuerdings wohl sogar direkt einen nach absetzen. Das hieß vorher und ist jetzt ein von Microsoft . Ich habe auch ein Video gesehen mit dem Titel "Introducing Copilot in Microsoft Viva Engage". Den scheint es echt für alles zu geben. Ob so eine "Employee-Experience-Plattform" was Tolles ist, wage ich aber zu bezweifeln.

ChristosArgyrop, to vscode

#CoPilot - searching #MetaCPAN for you inside your code editor (#vscode in my case) #perl @Perl
(I asked for a binary tree and got the package name for it)

LayZee, to github

Are you or your employer hesitant on using #GitHub #Copilot? Find the information you need in the GitHub Copilot Trust Center https://resources.github.com/copilot-trust-center/?WT.mc_id=DT-MVP-5003831

ChristosArgyrop, to python

Continuing the #python #CoPilot example, one can make it work by upping their prompting game.

  • In addition to the description of the algorithm, give the desired input and output.
  • It immediately suggests to define a class for intervals, followed by a line sweep over the sorted intervals.
  • It can generate some (sorted) test cases after prompting. *Surprisingly it had some issues with printing the results (for whatever reason, it could not generate the unpack-print loop, so I just did it

image/png
image/png

ChristosArgyrop,

If one calls the code thus generated on a list of sorted intervals, the output is as expected, i.e. there are 2 groups of overlapping intervals,
First Group: [1,3] , [2,4]
Second Group: [5,7] , [6,8]

It works with an input of unsorted intervals (as expected). There are various tests that are not being done by the function e.g. for intervals of zero or negative lengths, duplicate intervals etc. The code's correctness is thus predicated on promises about the input.

#LLM #python #Copilot

ChristosArgyrop,

@matsuzine I wonder about this, too. If the #copilot was only trained using #github , then the #perl code base is very small ie it was used in ~0.6% of projects in 2014 and 0.3% in 2022.
If these findings, i.e. #copilot can deliver better solutions in @Perl vs. other languages, generalize, then we may see a language boost and a better job market for #perl programmers. The latter would be a result of the need to optimize the initial solutions as @mjgardner did for the #perl example over here.

Stark9837, (edited ) to Youtube
@Stark9837@techhub.social avatar

"Why We Left The Cloud"

Recently watched this video by on , and his hot-take 🔥 was that they were using , and half of their pain was caused by this.

I have no experience with Ruby at all and most probably won't even recognize it if I were to read it.

If Ruby is such a bottleneck and inefficient, why did :mastodon: use Ruby for its implementation?

I know Ruby is often praised for servers and backends, especially APIs, but we have many solutions for this in :python: , which I wouldn't recommend, but :golang: and .

Does anyone have opinions or sources for this statement?

Video: https://youtube.com/watch?v=6h4oiPwtwDk&feature=share

Original article:https://world.hey.com/dhh/why-we-re-leaving-the-cloud-654b47e0

Stark9837,
@Stark9837@techhub.social avatar

@jan

That's why we only use #CoPilot 😂

ChristosArgyrop, to python

#Copilot is having an issue with the generation of a code to find overlapping intervals in #python. What was an effortless task for #perl is now taking for ever

ChristosArgyrop,

@mjgardner @Perl
There is clearly a difference in the ability of the #Copilot to play with different languages. Line - sweep, Bentley-Ottman are known algorithms and it should have been easy to generate the code for those. It only did so effortlessly in #perl. #c and #python had to be prompted for the generation of the relevant classes/data structures to do so.

ChristosArgyrop, to random

More fun with #copilot in #perl.
This is the code generated for finding intersecting intervals in a line:

sub findintersectingintervals($intervals,$query) {
my @intervals=@$intervals;
my $query=$query;
my @intersectingintervals=();
for my $interval (@intervals) {
my ($start,$end)=@$interval;
if ($query->[0] <= $end && $query->[1] >= $start) {
push @intersectingintervals,$interval;
}
}
return @intersectingintervals;
}

ChristosArgyrop,

What is absolutely mind blowing is how #copilot responds to prompts in comments.

Noticing that the algorithm provided to find overlapping intervals in a line is suboptimal, I give it a hint using a #perl comment :

find all overlapping intervals in a list of intervals

using line sweep algorithm

and it returns a line sweep subroutine (saving my sorry ass time to type this monstrosity).

ChristosArgyrop,

@mjgardner Mark you jinxed it :)
I tried to use #Copilot to do the same in #C, and after prompting with the first comment (line 5), I got schooled on the line sweep algorithm (all the other comments are copilot generated, line by line).
Very different behavior than the one with #Perl

schizanon, to ai

It's fucking spooky how good #copilot is at intuiting what I'm doing! I know it's got tons of hints, and I'm doing pretty common stuff, but after 25 years trying to keep all this code straight it's just really jarring to see autocomplete this good! #ai #llm #github #programming #vscode

ppatel, to microsoft
@ppatel@mstdn.social avatar

announces for Microsoft 365 pricing to cost $30 per user for business accounts, and unveils Bing Chat Enterprise with increased privacy.

https://www.engadget.com/microsoft-will-charge-businesses-30-per-user-for-its-365-ai-copilot-153042654.html

MarcinW, to ai
schizanon, to github

It's really bizarre how fast I've become dependent on #GitHub #Copilot. I always hated autocomplete, but now I can't live without it! #AI #programming #software #coding #webDev #javaScript

ppatel, to windows
@ppatel@mstdn.social avatar

Let me know when it's fixed. Okay?

The first preview of #Windows #Copilot falls short of expectations. Though it promises features like turning on simple settings like switching to dark mode, the #'AI integration' feels far from native. In fact, Copilot feels like a web wrapper, a pane running Bing.com within Microsoft Edge rather than a fully integrated part of Windows

https://www.bleepingcomputer.com/news/microsoft/hands-on-with-windows-copilot-a-bingcom-web-wrapper/

#GenerativeAI #MachineLearning #ML

J12t, to ChatGPT
@J12t@social.coop avatar

Today's #AIs are really just large statistical models gobbling up billions of data points from all over the internet and regurgitating them without understanding a thing. Like parrots. Super parrots. Very expensive ones.

So I propose to rename AIs like #chatGPT #bard and #copilot to:

"billion-dollar super parrot".

IMHO it works well in conversation. When somebody says "#AI will take your jobs" you respond "Oh yes, all those billion-dollar super-parrots will do a much better job than me."

maxleibman, to LLMs
@maxleibman@mastodon.social avatar

I got my Surface Laptop Go onto the Windows Copilot preview. Not especially earth-shaking. Basically, it's the Bing Chat sidebar from Microsoft Edge, but on Windows itself.

I DO like having this interface available outside of the browser, and having a keyboard shortcut key to summon and dismiss it (it takes over Cortana's former Windows Key + C), but otherwise I haven't seen it do any tricks I haven't already seen from ChatGPT and Bing.

#LLMs #BingChat #Windows #Copilot

maxleibman,
@maxleibman@mastodon.social avatar

So, one difference I've noticed on Windows Copilot versus Bing Chat: it actually does LESS. The Bing Chat icon in Edge (which now has a tooltip that reads "Copilot" triggers the Windows Copilot panel, not the in-browser version, and the windows version is missing the "compose" tab (in which you could set various parameters and then ask Bing to draft you some text).

#LLMs #BingChat #Windows #Copilot

maxleibman,
@maxleibman@mastodon.social avatar

Ok, one odd addendum to the previous post: the Edge sidebar DOES still appear, if you are using an Edge window that is signed in to an account other than the one you are signed into Windows on. So if I'm working on Edge in my personal profile, the Bing Chat button launches Copilot; if I'm on the profile signed into the M365 account that's associated with my employer's tenant, it still gets its own sidebar in Edge.

#LLMs #BingChat #Windows #Copilot

neptune22222, to generativeAI

@fsf Where can I read about the legal licensing and copyleft issues surrounding generative AI algorithms like LLMs (Large Language Models) like Chat-GPT or Copilot, trained on GPL'd source code?

I wonder if there is a need for a new license that explicitly makes training generative AI on open source code requires the AI model to be open sourced?

Does the FSF have any written opinions or educational materials related to this topic of the relationship between copyleft and generative AI trained on copyleft source code?

#gpl #copyleft #generativeai #chatgpt #copilot #foss #floss #libresoftware #freesoftware

masukomi, to random
@masukomi@connectified.com avatar

Something changed with our business github account. Switched to GitHub enterprise? But ... on GitHub.com still? I dunno. All i know is that it made our access to #Copilot stop being a thing and i'm still deriving good value from it helping me write docs.

Anyway, if you sign up for a personal account BE SURE TO UNCHECK THIS if you work on ANY proprietary / NDA'd code.

aburka, to random
@aburka@hachyderm.io avatar

Tried to discourage using #Copilot at work because (I claimed) it's making ourselves dependent on a computer that's trying to replace us. I got back (condescendingly) "we already use computers to help us do our jobs".

I feel like it's different. An LLM is not like a better text editor. Am I wrong? If I'm not wrong, how can I express it better?

sebsauvage, to microsoft French
@sebsauvage@framapiaf.org avatar

#Microsoft #GitHub #CoPilot #IA
Vous vous souvenez que Microsoft GitHub s'était pris un procès car son CoPilot copiait du code sans préciser la license ?
Microsoft vient de demander l'annulation de la procédure et pourrait être sur le point de gagner.
https://sebsauvage.net/links/?Sh1hiw

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • thenastyranch
  • magazineikmin
  • ethstaker
  • InstantRegret
  • tacticalgear
  • rosin
  • love
  • Youngstown
  • slotface
  • ngwrru68w68
  • kavyap
  • cubers
  • DreamBathrooms
  • provamag3
  • mdbf
  • cisconetworking
  • GTA5RPClips
  • modclub
  • khanakhh
  • everett
  • Leos
  • osvaldo12
  • normalnudes
  • tester
  • Durango
  • anitta
  • JUstTest
  • All magazines