Sponsored Content
The Lounge What is on Your Mind? Play Computer Trivia on Telegram Post 303044801 by nezabudka on Wednesday 4th of March 2020 06:25:31 AM
Old 03-04-2020
Ok @Neo
I'll try to collect telegram-cli from source https://github.com/vysheng/tg
These 2 Users Gave Thanks to nezabudka For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

xterm trivia

Thanks Livin Free... Here's another one... Why is it that I always get the error message "Error: Can't open display:" in my mail whenever I execute or try to call an xterm command using cron to activate the command. What did I miss? Thanks in advance UNIX gurus... (3 Replies)
Discussion started by: jfsuminist
3 Replies

2. What is on Your Mind?

Telegram Bots - Bot Code Examples

I'm currently looking into ways to integrate the Telegram API into the forums: Telegram Bots - Bot Code Examples I'm thinking, first off, to use the Telegram API to get forum alerts and notifications (to Bot or Not?). Second, I thinking of ways to more deeply integrate Telegram into the... (5 Replies)
Discussion started by: Neo
5 Replies

3. What is on Your Mind?

Forum Trivial Pursuit - New Computer Science and Mathematics Trivia for UNIX.com

I have added a new experimental "Computer Science and Mathematics Trivia - True or False" section in the discussions, currently under the tags box. In the future, I plan to Expand this feature to add more trivia categories from math, science and technology. Keep track of correct and... (20 Replies)
Discussion started by: Neo
20 Replies

4. What is on Your Mind?

1000+ Computer Science Trivia Questions at UNIX.COM

The UNIX and Linux Forums now has over 1000 TRUE / FALSE computer science and computer related trivia question in our database. These questions are of relatively high quality (compared to similar sites on the web) and are fun (according to feedback by users). In the first week during the... (1 Reply)
Discussion started by: Neo
1 Replies

5. What is on Your Mind?

New Member and Country Computer Trivia Leaderboards

Thanks to Akshay, who helped me write the core MySQL queries, we now have two new draft leaderboards, by (1) member and by (2) country: https://www.unix.com/trivia_stats.php Currently milhan leads the members with a high score of 90%: ... (3 Replies)
Discussion started by: Neo
3 Replies

6. What is on Your Mind?

Debugging Our Computer Science Trivia Feature

Only a few days after I coded this new feature from scratch, we are seeing over 3000 entries in the database from members (mostly guests) playing CS trivia. I have spend a lot of time coding this (from scratch) and testing the API. From the logs, it seems to have an API bug which appears... (31 Replies)
Discussion started by: Neo
31 Replies

7. What is on Your Mind?

Milestone: Users Answer Over 100,000 Computer Trivia Questions

Today marks another milestone in the computer trivia app: 100,000 Computer Trivia Questions Answered by Users Some notes to mention at this milestone: vbe leads the "best score" category with 320 questions answered for an overall score of 91.2%. rdrtx leads "most questions answered"... (0 Replies)
Discussion started by: Neo
0 Replies

8. What is on Your Mind?

MQTT, Node-RED, Linux, Apache2, MySQL, PHP, Telegram, ESP32, ESP8266, Arduino

I have just completed the first phase of integrating all these devices and technologies: MQTT, Node-RED, Linux, Apache2, MySQL, PHP, Telegram, ESP32, ESP8266, and the Arduino Uno The glue that binds all this together is MQTT. In fact, MQTT makes this kind of integration nearly trivial to... (1 Reply)
Discussion started by: Neo
1 Replies

9. What is on Your Mind?

Computer Trivia Feature Tops 50,000 Questions Answered

Just noticed that our successful computer trivia feature (stats here) has surpassed over 50,000 questions answered by users: https://www.unix.com/trivia_stats.php This was a coding effort worth while and I'm pleased to see so many people enjoying it in such a short time since it was released... (3 Replies)
Discussion started by: Neo
3 Replies
utf8::all(3pm)						User Contributed Perl Documentation					    utf8::all(3pm)

NAME
utf8::all - turn on Unicode - all of it VERSION
version 0.004 SYNOPSIS
use utf8::all; # Turn on UTF-8. All of it. open my $in, '<', 'contains-utf8'; # UTF-8 already turned on here print length 'foo bXr'; # 7 UTF-8 characters my $utf8_arg = shift @ARGV; # @ARGV is UTF-8 too! DESCRIPTION
utf8 allows you to write your Perl encoded in UTF-8. That means UTF-8 strings, variable names, and regular expressions. "utf8::all" goes further, and makes @ARGV encoded in UTF-8, and filehandles are opened with UTF-8 encoding turned on by default (including STDIN, STDOUT, STDERR), and charnames are imported so "N{...}" sequences can be used to compile Unicode characters based on names. If you don't want UTF-8 for a particular filehandle, you'll have to set "binmode $filehandle". The pragma is lexically-scoped, so you can do the following if you had some reason to: { use utf8::all; open my $out, '>', 'outfile'; my $utf8_str = 'foo bXr'; print length $utf8_str, " "; # 7 print $out $utf8_str; # out as utf8 } open my $in, '<', 'outfile'; # in as raw my $text = do { local $/; <$in>}; print length $text, " "; # 10, not 7! AVAILABILITY
The project homepage is http://metacpan.org/release/utf8-all/ <http://metacpan.org/release/utf8-all/>. The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN site near you, or see http://search.cpan.org/dist/utf8-all/ <http://search.cpan.org/dist/utf8-all/>. The development version lives at http://github.com/doherty/utf8-all <http://github.com/doherty/utf8-all> and may be cloned from git://github.com/doherty/utf8-all.git <git://github.com/doherty/utf8-all.git>. Instead of sending patches, please fork this project using the standard git and github infrastructure. SOURCE
The development version is on github at http://github.com/doherty/utf8-all <http://github.com/doherty/utf8-all> and may be cloned from git://github.com/doherty/utf8-all.git <git://github.com/doherty/utf8-all.git> BUGS AND LIMITATIONS
No bugs have been reported. Please report any bugs or feature requests through the web interface at https://github.com/doherty/utf8-all/issues <https://github.com/doherty/utf8-all/issues>. AUTHORS
o Michael Schwern <mschwern@cpan.org> o Mike Doherty <doherty@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2009 by Michael Schwern <mschwern@cpan.org>. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-01-10 utf8::all(3pm)
All times are GMT -4. The time now is 10:54 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy