Software and technology has changed every aspect of the world we live in. At one extreme are the ‘mission critical’ applications — the code that runs our banks, our hospitals, our airports and phone networks. Then there’s the code we all use every day to browse the web, watch movies, create spreadsheets… not quite so critical, but still code that solves problems and delivers services.
But what about the code that only exists because somebody wanted to write it? Code created just to make people smile, laugh, maybe even dance? Maybe even code that does nothing at all, created just to see if it was possible?
Join Dylan Beattie — programmer, musician, and creator of the Rockstar programming language — for an entertaining look at the art of code. We’ll look at the origins of programming as an art form, from Conways Game of Life to the 1970s demoscene and the earliest Obfuscated C competitions. We’ll talk about esoteric languages and quines — how DO you create a program that prints its own source code? We’ll look at quine relays, code golf and generative art, and we’ll explore the phenomenon of live coding as performance — from the pioneers of electronic music to modern algoraves and live coding platforms like Sonic Pi.
AWK to skryptowy (interpretowany) język programowania, przeznaczony głównie do przetwarzania tekstów.
W tym krótkim filmie przedstawiam podstawy składni wspomnianego języka AWK i pokazuję jak za jego pomocą zrealizować proste zadania, na które może napotkać początkujący administrator czy programista.
Kurs ten obejmuje jedynie podstawy, niezbędne do rozpoczęcia pracy z AWK. Jest to prosty tutorial, a nie kompendium wiedzy.
Zakres poruszanych tematów:
— uruchamianie skryptów AWK,
— wyszukiwanie wzorców,
— wypisywanie tekstu na ekran,
— używanie zmiennych,
— operacje arytmetyczne (tutaj: dodawanie),
— wypisywanie zmiennych,
— wykonywanie kodu przed i po przetworzeniu pliku wejściowego,
— definiowanie field separatora.
Linux users have some weird sadism where they recommend noobs to try to do the most difficult things when first using Linux, as if its normal to install a dozen virtual machines, run everything in Wine and a GPU passthrough. Thats the perfect recipe to make your life miserable and its better to help people to actually use Linux the way its intended to be used!
Vim огромен. Настолько огромен, что некоторым его полезным штукам уделено недостаточно внимания. Плагины расширяют функциональность, но это расширение осложняется увеличением зависимостей.
В этом докладе мы исследуем компромисные варианты между использованием некоторых плагинов и функционалом чистого Vim, позволяющим достичь тех же результатов, например:
— автодополнение (VimAwesome, YouCompleteMe)
— переходы по файлам (FuzzyFinder, Ctrl-P)
— визуальная навигация по файловой системе (NERDTree)
— интеграция с процессом сборки
— снипеты
Please join the discussion at EzeeTalk. www.ezeelinux.com/talk/ Its free, secure and fun!
This video is a crash course to help new users get started with BASH. Here is a list of the commands well cover:
BEGINNERS GUIDE TO THE BASH TERMINAL
NAVIGATION
ls — list directory contents
pwd — print name of current/working directory
cd — change working directory
pushd/popd — put working directory on a stack
file — determine file type
locate — find files by name
updatedb — update database for locate
which — locate a command
history — display bash command history
GETTING HELP
whatis — display the on-line manual descriptions
apropos — search the manual page names and descriptions
man — an interface to the on-line reference manuals
cat — concatenate files and print on the standard output
more/less — file perusal filter for crt viewing
nano — command line text editor
USERS
sudo — execute a command as superuser
su — change user ID or become another user
users — print the user names of users currently logged in
id — print real and effective user and group IDs
CHANGING FILE PERMISSIONS
chmod — change permissions of a file
KILLING PROGRAMS AND LOGGING OUT
Ctrl C — kill a running command
killall — kill processes by name
exit — log out of bash
USEFUL SHORTCUTS
Ctrl D — signal bash that there is no more input
Ctrl L — redraw the screen
Ctrl — make text bigger in terminal emulator
Ctrl — - make text smaller in terminal emulator
In this regular expressions (regex) tutorial, were going to be learning how to match patterns of text. Regular expressions are extremely useful for matching common patterns of text such as email addresses, phone numbers, URLs, etc. Almost every programming language has a regular expression library, so learning regular expressions with not only help you with finding patterns in your text editors, but also youll be able to use these programming libraries to search for patterns programmatically as well. Lets get started…