LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 08-17-2020, 06:11 PM   #16
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434

Quote:
Originally Posted by ondoho View Post
It's supposed to be a phone, isn't it.
What's that, 1.5 years after the announced release? 3 years after making wordy promises, and pulling lots of money out of lots of pockets?
:SMH:
You're complaining? How many phones do you know of that have 6 hardware switches for privacy? How many do you know of that can run 17 different open source operating systems? How many do you know of that sell for just $150 USD? By contrast the Librem 5 sells for around $750 USD iirc and runs one.
 
Old 08-19-2020, 12:50 AM   #17
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by enorbet View Post
You're complaining? How many phones do you know of that have 6 hardware switches for privacy? How many do you know of that can run 17 different open source operating systems? How many do you know of that sell for just $150 USD? By contrast the Librem 5 sells for around $750 USD iirc and runs one.
What is there not to complain about!
A crowdfunded smartphone is finally able to make phone calls (!) a year after the first protoype came out, which in turn was one year late. Give or take.
All the time making false promises, alienating present & future customers.
It probably still has those heat problems and no battery life to speak of...

It seems you completely missed the discussions we had about this a looong time ago.
Feel free to find them here on LQ, or just read this sad trilogy:
https://jaylittle.com/post/view/2019...ibrem-5-part-1

BTW, the pinephone also has hardware switches, and also 17 different open source operating systems.
https://www.pine64.org/pinephone/
https://wiki.pine64.org/index.php?ti...tware_Releases
AFAIK they developed it siginificantly faster than the Librem 5 (not saying faster is better, but in the case of Purism/Librem slower just means worse. Read the trilogy). It sells for a significantly smaller price, and at no point (to my knowledge) have pine64 made false promises/claims or employed any sort of weasel tactics. All of which Purism have done.

Some more links:
Well, just put "Librem 5" into youtube's search field, you get videos like https://www.youtube.com/watch?v=NV0RnWorPpQ (Spoiler: it's really bad).
But IMO the most cringeworthy is this video made by the (until then) BIGGEST Librem 5 fanboy - so big that Todd Weaver visited him with the bestest protoype to date - which again speaks for itself, because if that's the best he could come up with... ah well, see for yourself (BTW, Mr Weaver took the phone away again after his visit).
So, 10 months later it can make calls? Hoooray! /s

All attempts at trying to get into a wordy & stilted discussion with me will be ignored until I see that you properly read up on the subject.
 
Old 08-20-2020, 07:52 AM   #18
enorbet
Senior Member
 
Registered: Jun 2003
Location: Virginia
Distribution: Slackware = Main OpSys
Posts: 4,784

Rep: Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434Reputation: 4434
Ondoho? What's up with you? I never once touted Librem 5! I specifically mentioned the Pine phone as having had an important breakthrough that takes them out of the "developer only" bracket and in which I am quite interested. Why so negative and myopic?
 
Old 04-20-2021, 11:29 PM   #19
jmgibson1981
Senior Member
 
Registered: Jun 2015
Location: Tucson, AZ USA
Distribution: Debian
Posts: 1,141

Rep: Reputation: 392Reputation: 392Reputation: 392Reputation: 392
5 minutes ago while looking around recent threads here I discovered 2 commands I never knew about or never thought to look up.

seq and nice

I'm not sure what I can do with nice but seq made my router script much more convenient. In marking the ports for zoom I had this line in my for loop.

Code:
for port in 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 ; do
In bash I would just do this...

Code:
for port in 880{1..9} 8810 ; do
Not so much for sh. With seq it now reads this way.

Code:
for port in $(seq 8801 8810) ; do
I made an effort awhile back to make my scripts more portable. I've been doing sh instead of bash scripts. seq helps me!
 
Old 05-26-2021, 01:51 PM   #20
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,309
Blog Entries: 3

Rep: Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721
I found out that POSIX AWK can do comma separated patterns like sed can in order to denote the start and end patterns.

Quote:
A pattern may consist of two patterns separated by a comma; in this case,
the action is performed for all lines from an occurrence of the first
pattern through an occurrence of the second.
That gives the following:

Code:
$ cat << EOT > test.txt
> 1 g
> 2 f
> 3 f
> 4 e
> 5 e
> 6 d
> 7 c
> 8 b
> 9 a
> EOT

$ awk '$1~/2/ , $1~/6/' test.txt 
2 f
3 f
4 e
5 e
6 d
I had been doing it a more complicated way previously.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Careers in Open Source Week features professionals tips and lessons learned in the field LXer Syndicated Linux News 0 08-01-2014 08:20 AM
Is GUI design something that can be learned? Garda Programming 16 12-09-2013 01:03 PM
Something depends on something else but something else is to be installed javascriptninja Linux - Newbie 3 02-05-2012 04:22 PM
LXer: 10 Things I Have Learned as a Linux Blogger LXer Syndicated Linux News 0 10-22-2011 12:23 AM
What I have learned about 64-bit Linux slacker9876 SUSE / openSUSE 7 04-12-2006 08:18 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 06:54 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration