Skip to content

Instantly share code, notes, and snippets.

View tejas-2232's full-sized avatar
💭
adding value to open-source projects

Tejas Bachhav tejas-2232

💭
adding value to open-source projects
View GitHub Profile
@tejas-2232
tejas-2232 / 1_ML-Reg-Simple-Linear-Regression-Co2-py-v1.ipynb
Created February 11, 2020 06:47
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tejas-2232
tejas-2232 / PY0101EN-1-1-Types.ipynb
Created June 4, 2019 19:04
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@qbantek
qbantek / Create Unity desktop file for launcher
Created January 31, 2018 16:01
Install the Postman Native App in Ubuntu 16.04
cat > ~/.local/share/applications/postman.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
Icon=/opt/Postman/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
EOL
@mariusv
mariusv / remi_epel.yml
Last active February 28, 2024 21:06
Ansible playbook to enable EPEL + REMI repo. Tested on CentOS 6+ and RHEL 7
---
- hosts: all
sudo: yes
tasks:
- name: Install EPEL repo.
yum:
name: https://dl.fedoraproject.org/pub/epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm
state: present
@lukehedger
lukehedger / ffmpeg-compress-mp4
Last active May 28, 2024 16:48
Compress mp4 using FFMPEG
$ ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4