Skip to content

Instantly share code, notes, and snippets.

(umask 0; python -c 'import os; os.open("test", os.O_CREAT)'; ls -l test)
2021-08-14 15:14:36 @mbuf Hi all. This is the second talk on FOSS and companies.
2021-08-14 15:15:23 @mbuf I want to mention few important points, and you can then ask your questions.
2021-08-14 15:16:18 @mbuf This is a follow-up to an earlier discussion that we had in this channel on choosing companies
2021-08-14 15:17:19 @mbuf The first and foremost is to have a portfolio of your own where you can showcase your Free/Libre and Open Source contributions
2021-08-14 15:17:57 @mbuf This can be just your GitLab or GitHub link, or a list of patches, documentation changes, and other contributions to F/OSS projects that you have and are contributing to
2021-08-14 15:18:49 @mbuf Your work, by itself, will reflect on your calibre. Once, you have this in place, it will help attract companies who are interested in hiring you
2021-08-14 15:19:44 @mbuf By creating this portfolio of yours, you also create a name for yourself, and it helps in your branding
2021-08-14 15:20:29 @mbuf When people start noticing your work, you
2021-08-14 16:04:55 mohan43u the third talk is about ALSA
2021-08-14 16:05:07 mohan43u im the speaker of this tal
2021-08-14 16:05:14 mohan43u ^s/tal/talk/g
2021-08-14 16:05:31 mohan43u ALSA - Advanced Linux Sound Architecture
2021-08-14 16:06:14 mohan43u in this talk, Im going to explain about few commands
2021-08-14 16:06:35 mohan43u you can follow what I execute through https://meet.ilugc.in
2021-08-14 16:06:52 mohan43u this website is also relayed through jitsi
2021-08-14 16:07:20 mohan43u I hope everyone joined through either meet.ilugc.in or jitsi will not have problem following my commands
2021-08-14 16:07:39 mohan43u so lets start talk about alsa
2021-08-14 16:08:02 mohan43u ALSA is the subsystem in linux kernel responsible for audio
@mohan43u
mohan43u / fac.patch
Created June 14, 2023 21:07
Fac Patch
diff --git a/Makefile.in b/Makefile.in
index a54f468..42c9c79 100755
--- a/Makefile.in
+++ b/Makefile.in
@@ -19,7 +19,7 @@ CFLAGS = @CPPFLAGS@ @CFLAGS@
LIBS = @LDFLAGS@ @LIBS@ @FLIBS@
-all: lib sfac
+all: lib sfac pfac mpy
@mohan43u
mohan43u / x509-with-ip.sh
Created June 15, 2023 20:51
openssl self signed certificate with ip
openssl genrsa -out tls-rsa.prv
openssl req -new -key tls-rsa.prv -out tls-crtreq.pem
openssl x509 -in tls-crtreq.pem -req -signkey tls-rsa.prv -days $((365 * 10)) -extfile <(echo "subjectAltName=IP:10.2.1.170") -out tls-crt.pem
@mohan43u
mohan43u / videoedit.sh
Created April 20, 2024 01:43
videoedit.sh
#!/bin/bash
convert_to_seconds() {
time="${1}"
timev=(${time//:/ })
timea[2]=1
timea[1]=60
timea[0]=$((60 * 60))
index=$(("${#timev[*]}"))
time_seconds=0