Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
In the vast majority of real cases for me, a program that starts out as an ad-hoc shell script, when the amount of data it needs to process grows and the script is no longer just a centipede of 3 processes with their stdin and stdout connected, ends up getting written in C to eliminate the overhead from constant subprocess spawning and cleaning, not to increase networking speed or disk access speed.In most scripting scenarios your bottlenecks are going to be disk access and networking
Gentoo obviously.what distro r u gonna run on ur gabebox
You just described 95% of people that use linux as well as online discussions about linuxreally homosexual.
View attachment 8169077View attachment 8169078
What is it with Linux users always needing affirmation of their OS' superiority from news article reading sloptubers with shitty beards? At this point it's basically a trend and it's getting really homosexual.
If it works for you that's good. Personally I hated it and really think people should stop recommending it as the "intro to linux" distroMint Cinnamon has been pretty nice to use so far. Still has its flaws but I like it.
Why do you hated it? I always recommend mint to beginners because "it just works" and parts that don't won't work out of box, google it's almost get the answer and if the person can't bother to search and read some post IMO linux isn't for the person.If it works for you that's good. Personally I hated it and really think people should stop recommending it as the "intro to linux" distro
This is gonna sound retarded but are there good resources for finding stuff to do on Linux with an i686 laptop
It runs antix fine but now I need to find stuff to do with it
Hate was maybe a strong word it just felt like cinnamon was a big step down from windows or a KDE distro. the start menu was ultimately what ruined it for me not having a hibernate button and the lack of a favourites/most used/pinned list was just kinda gay. sure you can probably tweak it to be good but that's not exactly noob friendly imoWhy do you hated it? I always recommend mint to beginners because "it just works" and parts that don't won't work out of box, google it's almost get the answer and if the person can't bother to search and read some post IMO linux isn't for the person.
Honestly I'm not sure what you're trying to accomplish with your three element version. Just group results in sets of three? The way it's written, it looks like it'll write the first three elements to the file as many times as it finds matches.I'm actually curious to see your Bash version that uses grep. Or would you abandon grep for this?
YOU FUCKING WOT CUNTExcept returning a value from a function..
function addInts {
param([int]$num1, [int]$num2)
$result = $num1 + $num2;
return $result;
}
addInts 4 5;
It's pretty easy to understandThen you're not really demonstrating any real comparison to Powershell
YOU FUCKING WOT CUNT
Sure seems to work to me.Code:function addInts { param([int]$num1, [int]$num2) $result = $num1 + $num2; return $result; } addInts 4 5;
function getfile(){
$location = New-Object System.Windows.Forms.OpenFileDialog
$location.initialDirectory = $initialDirectory
$location.filter = "CSV (*.csv)| *.csv"
$location.ShowDialog()
return $location.FileName
}
getfile