Blogs
Testers Wanted: Android App for Tux Machines Site
Submitted by Roy Schestowitz on Tuesday 12th of February 2019 10:40:53 AM Filed under
Tux Machines is turning 15 this summer and as we noted over the weekend, many people now access the site using mobile devices, for which the site provides a subpar experience due to legacy. RSS feeds are therefore recommended. There's our RSS feed for news, RSS feed for Tux Machines Blogs and another for Techrights, where I write my original articles.
Most readers, however, do not use RSS feeds. Consider the 700 followers of our Twitter account, the 2,365 followers of our Diaspora account, 1,080 followers of our Mastodon account, and 63 followers of our Pleroma account (so about 4,000 in total). Those are dependent on third parties (we do not self-host these platforms). Even if "apps" are used for access to these social media platforms/sites, the links would lead to Tux Machines Web pages, which don't render particularly well on small screens (phones). So we've made this simple "app" for the site, but we're still testing it. If anyone out there can try it on an Android device and report back to us, we'll appreciate it greatly and use the feedback to improve it. █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 1284 reads
PDF version
Mobile Interfaces, Internet, Devices and UX
Submitted by Roy Schestowitz on Sunday 10th of February 2019 11:20:13 AM Filed under
Summary: Visitors who use mobile phones get a subpar experience, but that's an issue that boils down to preservation versus novelty
TUX MACHINES is turning 15 later this year. Longtime readers may very well know that the appearance or the layout of this site barely changed over the years. The key components have been in place since the very start. We still use node IDs as URLs (not ideal, but that works), mobile devices are barely supported (they were barely used on the Net at the time the site started), and due to SPAM we can no longer allow new user registrations (they overwhelm the site with a flood of SPAM submissions, i.e. noise such as pornographic comments, abusive blog posts etc.) within hours. We know because we tried opening up these registrations several times in the past. Any loosening of these restriction means a complete and utter mess.
"Mobile users who struggle with the site contact me routinely and my best suggestion for them is an RSS reader (many exist for mobile devices), which overcomes these issues and bypasses all the 'cruft'."
So-called 'UX' (buzzword for user interfaces/experience) in Tux Machines is far from ideal, especially for those who use a phone. We are aware of it, but the overhaul required to change that would be truly massive because of the number of pages, images, and the underlying framework, which was heavily modified and tailored for the existing user experience. I spent a lot of time making things work as they do. Susan had also invested a great deal of effort.
Mobile users who struggle with the site contact me routinely and my best suggestion for them is an RSS reader (many exist for mobile devices), which overcomes these issues and bypasses all the 'cruft'. Taking all the implications into account (endless work associated with a change), we don't plan a site redesign/overhaul. Maybe in the distant future, but not any time soon. The RSS feed is already used by a lot of people, even desktop/laptop users. We have no ads and no surveillance in this site, so RSS feeds don't impact some "business model" or whatever. In fact, it helps lower the strain on the server. █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 1217 reads
PDF version
Come and Join Tux Machines in Pleroma, Part of the Fediverse
Submitted by Roy Schestowitz on Sunday 10th of February 2019 04:10:32 AM Filed under
Summary: Tux Machines is on Pleroma.site, a lesser-known part of the Fediverse
Tux Machines has been on the Fediverse for quite some time (our Mastodon account), but months ago we also joined Pleroma, which is an exciting new alternative written in Elixir.
Just a few weeks ago somebody published this "Guide for GPlus [Google Plus] refugees to choose a new social network in the Fediverse" because "G+ will close on April 2nd. So to help people that haven’t decided yet where to go in the Fediverse I made some pointers. I divided this guide in a number of sections. Each section describes a certain use of social networks and which networks are most suitable for this specific use. Combine this with your preferred use of a social network and you should be able make a decision."
Pleroma too is part of the Fediverse and Pleroma.site, one large instance of Pleroma, recently completed hardware upgrades. GNU/Linux aficionados can follow us there. █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 1134 reads
PDF version
The Bash Fingertips: Making Your Own 'Information Centre'
Submitted by Roy Schestowitz on Sunday 3rd of February 2019 08:35:34 AM Filed under
FORGET bloated Web browsers. Forget so-called 'social' media (I call it social control media). They're not efficient, they eat up a lot of memory and CPU cycles, and the interfaces are not consistent (across sites). They're sufficiently distracting and they have ads. They erode privacy. They don't scale well; neither for an aging system (my laptop turns 10 in a few months) nor for users. GUIs are good in particular scenarios, but when the same things are repeated over and over again one might as well set up scripts, automating things and tailoring one's own interfaces, which is easy to achieve (relatively fast and simple) in the command line. It's also more accessible, e.g. over SSH. The pertinent tools are already out there (available for download/installation from repositories), they just need to be put together and programming skills aren't required, just batching in a bash file.
Some years ago I 'developed' a little script (I've been scripting since I was about 12). I called it getswap-sorted.sh
and it just ran another script that helped me see what applications use the swap (and how much of it). For the sake of speed I like to restart applications that heavily use swap (i.e. depend on magnetic disk operations). I don't have much RAM. I never had more than 2 GB. getswap-sorted.sh
just called out ./getswap.sh | sort -n -k 5
and getswap.sh
comes from Erik Ljungstrom. Here it is:
#!/bin/bash # Get current swap usage for all running processes # Erik Ljungstrom 27/05/2011 SUM=0 OVERALL=0 for DIR in `find /proc/ -maxdepth 1 -type d | egrep "^/proc/[0-9]"` ; do PID=`echo $DIR | cut -d / -f 3` PROGNAME=`ps -p $PID -o comm --no-headers` for SWAP in `grep Swap $DIR/smaps 2>/dev/null| awk '{ print $2 }'` do let SUM=$SUM+$SWAP done echo "PID=$PID - Swap used: $SUM - ($PROGNAME )" let OVERALL=$OVERALL+$SUM SUM=0 done
The output of getswap-sorted.sh
would be something like this:
PID=1559 - Swap used: 16472 - (x-terminal-emul ) PID=21980 - Swap used: 16648 - (kwalletd5 ) PID=25548 - Swap used: 16704 - (konversation ) PID=631 - Swap used: 19336 - (kded5 ) PID=23817 - Swap used: 50048 - (pidgin ) PID=23923 - Swap used: 180312 - (thunderbird )
This helps me see which application/process number uses swap and to what degree. It's sorted by the amount of swap taken and the PID helps when I just want to kill a process from the command line (some are small and obsolete anyway).
My script, however, grew bigger over time. I added more things to it, eventually binding it to a special (fifth) mouse key, using xbindkeys
-- an immensely valuable and powerful program I've used since around 2004. Extra mouse buttons always seemed worthless (anything more than three), but that's just because there was no program I needed to open or action I needed to invoke often enough. Over time I found that keeping a new terminal one click away (fourth button) and another special terminal also a click away improved my workflow/productivity. I just needed to invest some time in tailoring it. I ended up opening, temporarily, a terminal window with important information displayed, such as weather, disk space (I'm always near the limits), swap usage (I have only 2GB of RAM), uptime, real-time football scores etc. Change of wallpapers was lumped in too, for good measure...
For football tables/scores use one of the following 1) livescore-cli
2) soccer-cli and 3)
football-cli
.
Sadly, the above CLI football scores' tools got 'stolen' by Microsoft and need to isolate themselves GitHub, in due cource/time. I use the first of the three as it suits my needs best and does not require an API key.
The output looks like this:
... Fetching information from www.livescore.com ... Displaying Table for Barclay's Premier League ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Barclay's Premier League TABLE ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ LP Team Name GP W D L GF GA GD Pts -------------------------------------------------------------------------------------------------- 1 Liverpool 24 19 4 1 55 14 41 61 2 Tottenham Hotspur 25 19 0 6 51 24 27 57 3 Manchester City 24 18 2 4 63 19 44 56 4 Chelsea 25 15 5 5 45 23 22 50 5 Arsenal 24 14 5 5 50 33 17 47 6 Manchester United 24 13 6 5 48 35 13 45 7 Wolverhampton Wanderers 25 11 5 9 33 32 1 38 8 Watford 25 9 7 9 33 34 -1 34 9 Everton 25 9 6 10 36 36 0 33 10 AFC Bournemouth 25 10 3 12 37 44 -7 33 11 Leicester City 24 9 5 10 30 30 0 32 12 West Ham United 24 9 4 11 30 37 -7 31 13 Brighton & Hove Albion 25 7 6 12 27 36 -9 27 14 Crystal Palace 25 7 5 13 26 33 -7 26 15 Newcastle United 25 6 6 13 21 33 -12 24 16 Southampton 25 5 9 11 27 42 -15 24 17 Burnley 25 6 6 13 26 46 -20 24 18 Cardiff City 25 6 4 15 22 46 -24 22 19 Fulham 25 4 5 16 25 55 -30 17 20 Huddersfield Town 25 2 5 18 13 46 -33 11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ LP = League Position GP = Games Played W = Wins D = Draws L = Lose GF = Goals For GA = Goal Against GD = Goal Differences -------------------------------------------------------------------------------------------------- Champions League Champions League qualification Europa League Europa League qualification Relegation ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Real-time scores (when matches are on):
... Fetching information from www.livescore.com ... Displaying Scores for Barclay's Premier League ---------------------------------------------------------------------------- Barclay's Premier League SCORES ---------------------------------------------------------------------------- January 29 FT Arsenal 2 - 1 Cardiff City January 29 FT Fulham 4 - 2 Brighton & Hove Albion January 29 FT Huddersfield Town 0 - 1 Everton January 29 FT Wolverhampton Wanderers 3 - 0 West Ham United January 29 FT Manchester United 2 - 2 Burnley January 29 FT Newcastle United 2 - 1 Manchester City January 30 FT AFC Bournemouth 4 - 0 Chelsea January 30 FT Southampton 1 - 1 Crystal Palace January 30 FT Liverpool 1 - 1 Leicester City January 30 FT Tottenham Hotspur 2 - 1 Watford February 2 FT Tottenham Hotspur 1 - 0 Newcastle United February 2 FT Brighton & Hove Albion 0 - 0 Watford February 2 FT Burnley 1 - 1 Southampton February 2 FT Chelsea 5 - 0 Huddersfield Town February 2 FT Crystal Palace 2 - 0 Fulham February 2 FT Everton 1 - 3 Wolverhampton Wanderers February 2 FT Cardiff City 2 - 0 AFC Bournemouth February 3 15:05 Leicester City ? - ? Manchester United February 3 17:30 Manchester City ? - ? Arsenal February 4 21:00 West Ham United ? - ? Liverpool ---------------------------------------------------------------------------- ---------------------------------------
Now putting it all together:
feh --bg-fill --randomize /media/roy/c3fd5b6e-794f-4f24-b3e7-b4ead3722f11/home/roy/Main/Graphics/Wallpapers/Single\ Head/natgeo/* & livescore -t bpl ./getswap.sh | sort -n -k 5 curl -4 http://wttr.in/Manchester swapon --summary | grep sda2 df | grep sda1 uptime sleep 10 livescore -s bpl sleep 40
The first line is feh
choosing a wallpaper at random from a collection of award-winning National Geographic photographs. The options and the underlying parameters are self-explanatory.
The football league's table is then shown.
Next, after about 10 seconds of processing, a list of processes will show up based on swap usage (as described above)
The weather at home (Manchester) will then be shown, with colour. Right now I get:
Weather report: Manchester \ / Sunny .-. -5--2 °C ― ( ) ― ↑ 9 km/h `-’ 10 km / \ 0.0 mm ┌─────────────┐ ┌──────────────────────────────┬───────────────────────┤ Sun 03 Feb ├───────────────────────┬──────────────────────────────┐ │ Morning │ Noon └──────┬──────┘ Evening │ Night │ ├──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼──────────────────────────────┤ │ \ / Partly cloudy │ .-. Light drizzle │ _`/"".-. Light rain sho…│ Mist │ │ _ /"".-. -4-0 °C │ ( ). -2-3 °C │ ,\_( ). 1-3 °C │ _ - _ - _ - 0-3 °C │ │ \_( ). ↑ 12-20 km/h │ (___(__) ↑ 17-26 km/h │ /(___(__) ↗ 7-14 km/h │ _ - _ - _ ↑ 9-17 km/h │ │ /(___(__) 20 km │ ‘ ‘ ‘ ‘ 20 km │ ‘ ‘ ‘ ‘ 16 km │ _ - _ - _ - 13 km │ │ 0.0 mm | 0% │ ‘ ‘ ‘ ‘ 0.4 mm | 83% │ ‘ ‘ ‘ ‘ 0.4 mm | 65% │ 0.0 mm | 0% │ └──────────────────────────────┴──────────────────────────────┴──────────────────────────────┴──────────────────────────────┘ ┌─────────────┐ ┌──────────────────────────────┬───────────────────────┤ Mon 04 Feb ├───────────────────────┬──────────────────────────────┐ │ Morning │ Noon └──────┬──────┘ Evening │ Night │ ├──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼──────────────────────────────┤ │ .-. Light drizzle │ _`/"".-. Patchy rain po…│ Cloudy │ Cloudy │ │ ( ). 2-6 °C │ ,\_( ). 3-7 °C │ .--. 1-4 °C │ .--. -2 °C │ │ (___(__) → 16-26 km/h │ /(___(__) → 20-27 km/h │ .-( ). → 13-23 km/h │ .-( ). ↗ 9-16 km/h │ │ ‘ ‘ ‘ ‘ 14 km │ ‘ ‘ ‘ ‘ 18 km │ (___.__)__) 20 km │ (___.__)__) 20 km │ │ ‘ ‘ ‘ ‘ 0.3 mm | 88% │ ‘ ‘ ‘ ‘ 0.3 mm | 88% │ 0.0 mm | 0% │ 0.0 mm | 0% │ └──────────────────────────────┴──────────────────────────────┴──────────────────────────────┴──────────────────────────────┘ ┌─────────────┐ ┌──────────────────────────────┬───────────────────────┤ Tue 05 Feb ├───────────────────────┬──────────────────────────────┐ │ Morning │ Noon └──────┬──────┘ Evening │ Night │ ├──────────────────────────────┼──────────────────────────────┼──────────────────────────────┼──────────────────────────────┤ │ \ / Partly cloudy │ Overcast │ Overcast │ .-. Light drizzle │ │ _ /"".-. -1-3 °C │ .--. 2-6 °C │ .--. 6 °C │ ( ). 1 °C │ │ \_( ). ↖ 19-31 km/h │ .-( ). ↑ 23-33 km/h │ .-( ). ↑ 24-40 km/h │ (___(__) ↑ 24-40 km/h │ │ /(___(__) 20 km │ (___.__)__) 19 km │ (___.__)__) 8 km │ ‘ ‘ ‘ ‘ 9 km │ │ 0.0 mm | 0% │ 0.0 mm | 0% │ 0.0 mm | 0% │ ‘ ‘ ‘ ‘ 0.3 mm | 0% │ └──────────────────────────────┴──────────────────────────────┴──────────────────────────────┴──────────────────────────────┘
After this I am shown general memory usage and disk usage (for a particular partition) along with uptime thusly:
/dev/sda2 partition 2097148 381128 -1 /dev/sda1 84035088 77299588 2443660 97% / 08:03:28 up 116 days, 12:36, 7 users, load average: 1.70, 1.40, 1.26
It will close on its own after I see what needs seeing, owing to the sleep
command. It saves me the clicking (required to then close the window); it just fades away or 'expires', so to speak (until the next time the mouse button gets pressed). █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 1898 reads
PDF version
Assess your Linux Knowledge.
Submitted by masinick on Tuesday 9th of October 2018 07:27:50 AM Filed under
This Linux testmight help to check your personal knowledge of the various topics discussed in the Linux/UNIX fundamentals courses, in order to find out assess your Linux skills.
- masinick's blog
- Login or register to post comments
Printer-friendly version
- Read more
- 6097 reads
PDF version
Find Us and Follow on Diaspora and Mastodon
Submitted by Roy Schestowitz on Friday 24th of August 2018 05:14:24 AMFor those who do not favour RSS feeds and are not using Twitter, the Free/Open Source federated social network services are also an option (and have been for quite some time). We're adding to buttons to the site now (they are also clickable above) █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 12076 reads
PDF version
Unixstickers
Submitted by Rianne Schestowitz on Tuesday 19th of June 2018 10:47:18 AM Filed under
- Rianne Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 13541 reads
PDF version
Tux Machines Turns 14
Submitted by Roy Schestowitz on Sunday 17th of June 2018 10:28:10 AM Filed under
IN JUNE 2004 Tux Machines was registered, which makes this site nearly a decade and a half old. Running this site is more than a full-time job; it's not just a hobby but more like a 24/7 duty, not even with holidays or weekends off. But as long as people find the site useful, it makes all the work worthwhile. RIanne and I will keep refreshing our RSS feeds and keep this site abreast of the news. █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 15662 reads
PDF version
GitHub as the Latest Example of Microsoft Entryism in Free/Libre Software
Submitted by Roy Schestowitz on Saturday 16th of June 2018 05:08:17 PM Filed under
"This is in effect the very same trick they did/pulled with Novell and SUSE (where Nat Friedman came from after his Microsoft internship) about a decade ago."
THE recent GitHub takeover, which has not formally been approved just yet (although there are no foreseen barriers to it), is definitely bad news; it is a lot of things to Microsoft however. It is good news only to Microsoft and GitHub shareholders, who basically sold out many developers without rewarding/compensating them for this unwanted (to them) takeover.
There are many aspects to it: First of all, it helps paint Microsoft as "open source" and it helps Microsoft gain leverage over developers, e.g. their choice process of framework/s and licence/s (Microsoft still dislikes copyleft); by leverage over platform they can suggest Azure, for example, or create bindings to it; they gain leverage over projects tied to governments, including some of our clients at work; Microsoft can vainly tell them, i.e. the governments and their developers: "look, you want FOSS? We're FOSS" (so they effectively become their own competitor!). In fact, there's so much more and I could easily name a couple dozen examples, but I know people pursue/need concision here. For an analogy, in politics this concept or strategy is known as "entrism" or "entryism".
Microsoft also uses patents to blackmail FOSS; there's that element too, albeit many people conveniently choose to forget it. Microsoft is sending patents to patent trolls, then offers "Azure IP Advantage". This is in effect the very same trick they did/pulled with Novell and SUSE (where Nat Friedman came from after his Microsoft internship) about a decade ago.
There are many other angles to it, including programming languages, frameworks (e.g. proprietary IDEs like MSVS), code editors and not just bindings to Microsoft as a host and API provider. People, especially developers of software, generally know how E.E.E. works; the basic precondition/premise is that you gain controls/leverage over that which threatens you (Nokia: Elop, Novell: Mono and lots more examples). So that's kind of a way of getting inside, gradually forming a partnership and then shutting down or sidelining whatever threatens you. Like Xamarin did to RoboVM, in effect killing it under Friedman's leadership. Friedman is going to be the chief of GitHub.
Microsoft can direct the opposition's decisions and its fate. Sadly, they already do this inside the Linux Foundation, where Microsoft staff already has chairs in the Board.
From what I can gather, developers ditching GitHub is becoming a fairy common thing this month. I already see the 1) active 2) large 3) non-Windows ones leaving, but it can take time; some told me they still rely on open bug reports and other 'vendor lockin'; that needs some work before they can migrate; the real alternative is self-hosted git. █
"Sadly, they already do this inside the Linux Foundation, where Microsoft staff already has chairs in the Board."
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 16052 reads
PDF version
Olinux- Everything about Linux
Submitted by masinick on Monday 28th of May 2018 03:36:21 PM Filed under
Our goal is to help you solve your computer problems and learn new technologies. We write about things that are in any way related to Linux. This website is updated regularly with high quality content. Content throughout OLinux.net and Ethical Hacking covers the following areas:
In Memoriam: Robin "Roblimo" Miller, a Videographer and Free Software Champion
Submitted by Roy Schestowitz on Friday 25th of May 2018 06:01:58 AM Filed under
Robin "Roblimo" Miller was a clever, friendly, and very amicable individual who everyone I know has plenty of positive things to say about. I had the pleasure of speaking to him for several hours about anything from personal life and professional views. Miller was a very knowledgeable person whose trade as a journalist and video producer I often envied. I have seen him facing his critics in his capacity as a journalist over a decade ago when he arranged a debate about OOXML (on live radio). Miller, to me, will always be remembered as a strong-minded and investigative journalist who "did the right thing" as the cliché goes, irrespective of financial gain -- something which can sometimes be detrimental to one's longterm health. Miller sacrificed many of his later years to a cause worth fighting for. This is what we ought to remember him for. Miller was - and always will be - a FOSS hero.
May everything you fought for be fulfilled, Mr. Miller. I already miss you. █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 13036 reads
PDF version
Tux Machines Privacy Statement
Submitted by Roy Schestowitz on Friday 25th of May 2018 04:59:49 AM Filed under
Summary: Today, May 25th, the European General Data Protection Regulation (GDPR) goes into full effect; we hereby make a statement on privacy
AS a matter of strict principle, this site never has and never will accumulate data on visitors (e.g. access logs) for longer than 28 days. The servers are configured to permanently delete all access data after this period of time. No 'offline' copies are being made. Temporary logging is only required in case of DDOS attacks and cracking attempts -- the sole purpose of such access. Additionally, we never have and never will sell any data pertaining to anything. We never received demands for such data from authorities; even if we had, we would openly declare this (publicly, a la Canary) and decline to comply. Privacy is extremely important to us, which is why pages contain little or no cross-site channels (such as Google Analytics, 'interactive' buttons for 'social' media etc.) and won't be adding any. Google may be able to 'see' what pages people visit because of Google Translate (top left of every page), but that is not much worse than one's ISP 'seeing' the same thing. We are aware of this caveat.
Shall readers have any further questions on such matters, do not hesitate to contact us. █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- Read more
- 12012 reads
PDF version
Orangutans are some of the most solitary animals critically endangered as human consumption grows; Ban Palm oil Industry.
Submitted by Rianne Schestowitz on Thursday 7th of December 2017 06:46:07 PM Filed under
Orangutans are some of the most solitary animals critically endangered as human consumption grows.
Orangutans are currently only found in the rainforest of Borneo and Sumatra where both species are endangered. The orangutans' habitat has decreased and is rapidly being devastated by loggers, palm oil plantations, gold miners, and unnatural forest fires.
Watching videos of orangutans over hundreds of times is nerve-wracking, seeing them in distress and in great trauma as babies watch their mothers hacked and killed by poachers. They are using their machete which is so inhumane, as many of these infants die without the help of their mother and some other infants are sold as pets, ending in the hands of their 'owner', maltreated and malnourished, making their situation even worse. This happened because of the humongous demand and consumption of humans. Guilt is creeping on me; while enjoying my food and applying all the cosmetics for vanity it is like slaughtering an innocent and beautiful primate slowly and accurately. I wasn't thinking at all; I'm closely blinded of my needs, having never bothered to think that somewhere out there someone is tormented. I can't let this happen any longer. I must act and make a stand and be the voice of orangutans. I'm calling for everyone to ban and stop buying palm oil products. We must stop deforestation and the palm oil industry, strongly and swiftly before orangutans and all other animals sail into extinction. █
- Rianne Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 16991 reads
PDF version
VAR-SOM-MX7 is now available with Certified 802.11ac/a/b/g/n and Bluetooth 4.2 support
Submitted by Variscite on Thursday 23rd of November 2017 09:42:04 AM Filed under
Variscite Announces the Upgrade of its VAR-SOM-MX7 SoM with Bluetooth 4.2 and the Launch of its New VAR-SOM-MX7 Variant with Improved Dual-band 802.11ac/a/b/g/n Certified Wi-Fi Module.
- Variscite's blog
- Login or register to post comments
Printer-friendly version
- Read more
- 13755 reads
PDF version
Variscite Launches New Variants for the DART-6UL SoM with Improved Certified Wi-Fi/BT Module with 802.11 ac/a/b/g/n Support
Submitted by Variscite on Thursday 15th of June 2017 03:27:17 PM Filed under
In a matter of only two months, Variscite has announced the launch of an additional enhancement for the DART-6UL System on Module (SoM) product line based on the NXP Cortex-A7 i.MX6 UltraLite family.
- Variscite's blog
- Login or register to post comments
Printer-friendly version
- Read more
- 18820 reads
PDF version
Beijing Zoo is No Place for Pandas
Submitted by Rianne Schestowitz on Sunday 23rd of April 2017 07:59:48 PM Filed under
Photo credit: Nick Hopkins
I am a Panda lover. I work as a support engineer in an I.T company here in the United Kingdom. Most of my spare time is spent watching different Panda videos -- both old and new videos. Basically, it is my therapy; a 'stress release' for me. I find them to be adorable and precious creatures. As a matter of fact, I would like to volunteer to come to Sichuan. I want to experience and feel what it's like to be a Panda keeper, to be able to interact with them for real. The Panda is China's National Treasure, so it's a shame to watch the Panda videos from Beijing zoo, as the place is disgusting and not ideal for Pandas to live in (and for sure for all the rest of the animals who unfortunately got stuck in this prison cell).
The place looks like a ghost town. Lifeless and languished. Knowing that Pandas wear a thick fur on their body, can you imagine what it feels for them in 30C or 35C (summer temperature)? What it probably feels like all the time? Come on, if you really care, you must do something now, otherwise these Pandas will die. Please bring them back to their sanctuary where they really belong. █
- Rianne Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 19960 reads
PDF version
Tux Machines is Now on Mastodon
Submitted by Roy Schestowitz on Friday 14th of April 2017 05:21:50 PM Filed under
Summary: We can now be found in Mastodon too
A FOSS and decentralised Twitter alternative has received plenty of media attention/traction lately, so Tux Machines belatedly joins in and we invite readers to follow us there if they wish to create an account. The popularity of the platform exploded (number of users quadrupled so far this month). █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 19398 reads
PDF version
We've Made It! 100,000 Nodes
Submitted by Roy Schestowitz on Friday 31st of March 2017 06:38:16 PM Filed under
Summary: Another milestone for Tux Machines, which will turn 15 in a couple of years
100,000 nodes in Tux Machines will have been published later tonight. This one will be assigned node ID/#99995. Earlier today someone anonymous told us, "I just wanted to say thank you for all the work you've done and new information updates at tuxmachines.org."
That's what we are here for -- to help spread information. We don't profit or gain anything from this site, but it's our way of giving back to the Free/Open Source software community.
On to 200,000 (this may take another decade or more). █
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 17805 reads
PDF version
Translation of the Latest 'Microsoft Loves Linux' Charm Offensive
Submitted by Roy Schestowitz on Thursday 17th of November 2016 01:07:08 PM Filed under
QUITE a few additional articles -- mostly puff pieces (below is a complete/exhaustive list) -- have been published since yesterday's blog post, which was followed by a short article from Techrights. There is a lot of Microsoft PR inside the news/media right now (more and more by the hour) and it's coordinated (sometimes in advance, based on what we learned yesterday) by Microsoft. Here is a quick rebuttal to the 4 strands of news:
- The Linux Foundation joins Microsoft (not a slip): Microsoft paid half a million dollars for over a hundred puff pieces (in English alone) and lots of leverage over Linux, including a distraction from the patent wars it wages.
- The GNU/Linux crowd gets a proprietary software database it neither wants nor needs: This might be useful when Microsoft tries to infiltrate GNU/Linux deployments like the one in Munich, later boasting better integration with Windows than with GNU/Linux (same for running Bash/Ubuntu under Windows 10).
- Google and .NET: Microsoft accepts that it lost the mobile wars and also lost developers, so it tries ever more desperately to spread .NET and/or Mono.
- Tizen/Samsung and .NET: As above.
That's about all it means. Below is the raw PR, which is intended to sometimes (it doesn't always work) mislead the reader, having misled the writers/journalists. █
Related/contextual items from the news:
-
Microsoft demonstrates its commitment to open source by joining Linux Foundation [Ed: Microsoft advocacy sites (often paid-for nonsense) like to pretend to themselves that Microsoft is now a good citizen, not racketeer. iophk: “You’ve probably seen links about LF joining Microsoft so I won’t add them. It would have been news if Microsoft joined OIN.”]
-
Microsoft joins The Linux Foundation as a Platinum member [Ed: How MS advocacy sites put it; the larger payment (like political 'donation') was inevitable. To quote Benjamin Henrion, "Microsoft depends so much on taxing Linux via its dubious software patents that they have decided to join the Linux Foundation #corruption"]
-
Microsoft now a Platinum Member at Linux Foundation and .NET foundation has Google onboard
-
Microsoft joins the Linux foundation and blows everyone’s mind
-
Microsoft And Linux Working On Advance Open Source Project Development, SQL Server And Azure App Service
-
Microsoft and Linux Collaborates For Open-Source Game; As Rivals Unite, How Could Linux Benefit From This?
-
Microsoft joins Linux Foundation as it continues to embrace open source
-
Microsoft join hands with Linux Foundation as platinum member
-
Microsoft joins the Linux Foundation as a Platinum member
-
Microsoft Becomes a Member of The Linux Foundation
-
Is Google crashing the Microsoft open source party?
-
Microsoft: SQL Server for Linux is the real deal
-
Microsoft doubles down on Linux love, joins foundation
-
Microsoft joins the Linux Foundation, launches test build of Visual Studio for Mac
-
Microsoft makes open source commitment with new partnerships involving Google, Linux, Samsung
-
Microsoft joins Linux Foundation as a Platinum Member
-
Microsoft joins Linux Foundation, Open-Source development to get major boost
-
Microsoft joins Linux Foundation at Platinum Partner
-
After OpenAI Partnership, Microsoft Joins The Linux Foundation To Dive Deeper Into Open-Source Code
-
Microsoft is joining the Linux Foundation
-
Microsoft Joins Linux Foundation, Bets on Open Cloud Computing
-
Microsoft Shows Linux Love by Joining the Linux Foundation
-
Loves spreads, new Microsoft SQL Server now previewed on Ubuntu
-
Microsoft joins the Linux Foundation, no really
-
Linux Academy Partners with Microsoft Visual Studio Dev Essentials Program
-
Microsoft Becomes Linux Foundation Platinum Member, The Last Leaf has Fallen
-
Microsoft joins the Linux Foundation, confirms commitment to open source development
-
Microsoft has joined the Linux foundation
-
Microsoft Joins Linux Foundation, After Calling Linux a 'Cancer'
-
Microsoft Drops Tech Bombshell As It Joins Linux Foundation
-
Microsoft partners with the Linux Foundation
-
Microsoft and Google bury the hatchet in one small way
-
Microsoft Joins the Linux Foundation As Everyone Now Loves Open Source
-
Microsoft is the Platinum member of Linux Foundation
-
Linux Foundation Gets a Surprising New Member: Microsoft
-
SQL Server joins the Linux party, new preview comes to Linux and Docker
-
Microsoft joins the Linux Foundation as a Platinum member, Google joins .Net community
-
Microsoft joins Linux Foundation that promotes open-source technology
-
Microsoft SQL Server Supports Linux
-
Cricket Australia to adopt Microsoft’s team and player performance platform
-
Microsoft announces association with Linux Foundation with Platinum membership
-
Microsoft joins The Linux Foundation at highest membership tier
-
Microsoft Joins Linux Foundation As Platinum Member And Releases Ports
-
Microsoft Embraces Open Source, Joins Linux Foundation
-
As Microsoft joins Linux, Google shakes hands with the .NET Foundation
-
Microsoft joined the Linux foundation as a platinum member because of Cloud Services
-
Microsoft, Google, and Samsung Bury the Hatchet with New Partnerships
-
Microsoft, Google, Samsung Team Up In Open Source Development
-
Microsoft surprises by joining Linux, 15 years after calling it a ‘cancer’
-
Microsoft joins Linux Foundation in another nod to open-source code
-
Microsoft officially joins the Linux league of open source contributors
-
After Microsoft joins Linux, Google Cloud joins .NET Foundation
-
Google signs on to the .NET Foundation
-
Microsoft Joins Linux Foundation
-
Microsoft’s .NET Foundation Now Includes Google
-
Microsoft Joins The Linux Foundation In Latest Open Source Commitment
-
Microsoft joins The Linux Foundation; takes on Oracle
-
Microsoft Joins The Linux Foundation to Boost Open Source Software Ecosystem
-
Microsoft has officially joined the Linux Foundation
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 28108 reads
PDF version
Linux Foundation Commits Suicide as Microsoft E.E.E. Takes a Leap Forward
Submitted by Roy Schestowitz on Wednesday 16th of November 2016 08:49:17 PM Filed under
I have covered Microsoft's interference with FOSS for over a decade and carefully studied even pertinent antitrust documents. I know the company's way of thinking when it comes to undermining their competition, based on internal communications and strategy papers. Even days ago we got this in the news.
The pattern of embrace and extend (to extinguish) -- all this while leveraging software patents to make Linux a Microsoft cash cow or compel OEMs to preinstall privacy-hostile Microsoft software/apps with proprietary formats (lockin) -- never ended. What I see in the Linux Foundation right now is what I saw in Nokia 5 years ago and in Novell 10 years ago -- the very thing that motivated me to start Boycott Novell, a site that has just turned 10 with nearly 22,000 blog posts.
It is a saddening day because it's a culmination, after years of Microsoft 'micro' payments to the Linux Foundation (e.g. event sponsorship in exchange for keynote positions), which will have Microsoft shoved down the throats of GNU/Linux proponents and give an illusion of peace when there is none, not just on the patent front but also other fronts (see what Microsoft's partner Accenture is doing in Munich right now). The links below are a complete list of the bad (in my view very bad) news. █
"We need to slaughter Novell before they get stronger….If you’re going to kill someone, there isn’t much reason to get all worked up about it and angry. You just pull the trigger. Any discussions beforehand are a waste of time. We need to smile at Novell while we pull the trigger."
--Jim Allchin, Microsoft's Platform Group Vice President
In the news today:
-
Microsoft Steps Up Its Commitment to Open Source
Today The Linux Foundation is announcing that we’ve welcomed Microsoft as a Platinum member. I’m honored to join Scott Guthrie, executive VP of Microsoft’s Cloud and Enterprise Group, at the Connect(); developer event in New York and expect to be able to talk more in the coming months about how we’ll intensify our work together for the benefit of the open source community at large.
-
Microsoft Joins The Linux Foundation As A Platinum Member
-
Microsoft's Linux love affair leads it to join The Linux Foundation
No, this isn't The Onion and it's not April Fool's Day. Microsoft has joined The Linux Foundation.
Microsoft announced that it was joining forces with The Linux Foundation at the Microsoft Connect developer event in New York.
-
Microsoft announces the next version SQL Server for Windows and Linux
-
Microsoft joins The Linux Foundation as a Platinum member
-
Microsoft joins the Linux Foundation
-
Microsoft—yes, Microsoft—joins the Linux Foundation
-
THE END TIMES ARE HERE: Microsoft embraces Google, Apple, Samsung and even Linux in one go
-
Microsoft's open source love fest continues as it joins Linux Foundation
-
Microsoft Goes Linux Platinum, Welcomes Google To .NET Foundation
-
Microsoft joins Linux Foundation in another nod to open-source code
-
Microsoft Is Joining the Linux Foundation
-
Microsoft Joins Linux Foundation
-
Microsoft joins Linux Foundation in another step toward greater openness
-
Microsoft joins the Linux Foundation, 15 years after Ballmer called it 'cancer'
-
Microsoft joins the Linux Foundation as a Platinum member, Google joins .Net community
-
Microsoft is now a Linux Foundation Platinum Member
-
That's an expensive Linux install! Microsoft gives the Linux foundation $550000
-
Microsoft joins the Linux Foundation because 2016 isn't weird enough already
-
Microsoft just got its Linux Foundation platinum card, becomes top level member
-
4 no-bull takeaways from Microsoft joining the Linux Foundation
-
Microsoft announces the public preview of the next release of SQL Server on Linux and Windows
-
Microsoft Joins Linux Foundation, Google Joins .NET Community
-
Microsoft just joined the Linux Foundation as a Platinum member
-
Linux has won, Microsoft joins the Linux Foundation
-
Microsoft is joining the Linux foundation as a platinum member
-
Microsoft joins Linux Foundation, Google added to .NET community
-
Microsoft seeks to grow Azure platform with products, partnerships
-
Microsoft Joins Linux Foundation As Platinum Member
-
Microsoft Fortifies Commitment to Open Source, Becomes Linux Foundation Platinum Member
-
Microsoft contributes to open ecosystem by joining Linux Foundation and welcoming Google to the .NET community
-
Linux Academy Partners with Microsoft Visual Studio Dev Essentials Program
-
Microsoft Joins the Linux Foundation as the World Remains the Right Side Up
-
Hell freezes over as Microsoft joins the Linux Foundation
-
Microsoft Joins Linux Foundation as a Platinum Member
-
Microsoft Connect: Visual Studio 2017, SQL Server v.Next for Windows and Linux and More
-
SQL Server joins the Linux party, new preview comes to Linux and Docker
-
Microsoft joins The Linux Foundation
-
Google joins .Net Foundation
-
Microsoft and Google bury the hatchet in one small way
-
Google joins Microsoft's .NET Foundation
-
Microsoft announces Visual Studio for Mac, preview of the next SQL Server with Linux and Docker support
-
Microsoft's SQL Server Next for Linux, Windows hit public preview [Ed: Proprietary software with surveillance is not a gift]
-
Google signs on to the .NET Foundation as Samsung brings .NET support to Tizen
Microsoft is hosting its annual Connect(); developer event in New York today. With .NET being at the core of many of its efforts, including on the open-source side, it's no surprise that the event also featured a few .NET-centric announcements...
-
Samsung launches Visual Studio Tools for Tizen preview, lets developers build apps with .NET
-
Microsoft joins the Linux Foundation, welcomes Google to .NET community
-
Microsoft releases SQL Server Preview for Ubuntu and Red Hat Enterprise Linux
-
Microsoft says Linux is no longer 'cancer,' joining Foundation
- Roy Schestowitz's blog
- Login or register to post comments
Printer-friendly version
- 24462 reads
PDF version

More in Tux Machines
- Highlights
- Front Page
- Latest Headlines
- Archive
- Recent comments
- All-Time Popular Stories
- Hot Topics
- New Members
Type | Title | Author | Replies |
Last Post![]() |
---|---|---|---|---|
Story | Programming: Emacs Org, ISO C++, PyCharm and Recursive Programming | Roy Schestowitz | 15/02/2019 - 7:09pm | |
Story | Graphics: Mesa/Virgl3D, Nouveaum and Gallium3D | Roy Schestowitz | 15/02/2019 - 7:06pm | |
Story | Linux 5.1 Improvements | Roy Schestowitz | 15/02/2019 - 6:54pm | |
Story | Android Leftovers | Rianne Schestowitz | 15/02/2019 - 6:40pm | |
Story | Samsung 970 EVO Plus 500GB NVMe Linux SSD Benchmarks | Rianne Schestowitz | 15/02/2019 - 6:26pm | |
Story | elementary 5 "Juno" | Rianne Schestowitz | 15/02/2019 - 6:21pm | |
Story | Audiophile Linux Promises Aural Nirvana | Rianne Schestowitz | 15/02/2019 - 6:17pm | |
Story | Ubuntu 18.04.2 LTS Released with Linux Kernel 4.18 from Ubuntu 18.10, More | Rianne Schestowitz | 2 | 15/02/2019 - 6:16pm |
Story | First Look: Tuxedo InfinityCube Linux Desktop PC With Intel Core-i7 8700 | Rianne Schestowitz | 15/02/2019 - 6:14pm | |
Story | Redcore Linux Gives Gentoo a Nice Facelift | Rianne Schestowitz | 15/02/2019 - 6:12pm |
Recent comments
6 hours 42 min ago
15 hours 2 min ago
1 day 7 hours ago
1 day 7 hours ago
1 day 7 hours ago
1 day 7 hours ago
1 day 7 hours ago
1 day 8 hours ago
1 day 10 hours ago
1 day 12 hours ago