Hi everyone.
Today I will show you how to earn $200+$50 free credit for digitalocean.
Lets start.
Dont forget, you must have a new account on digitalocean for earn $250 coupon code.
#!/usr/bin/env python3 | |
""" | |
A userscript to display all things running on localhost. | |
Either that or to open up a localhost given a port as input. | |
""" | |
import os | |
from shlex import join | |
import psutil | |
from jinja2 import Template |
#!/usr/bin/env zsh -f | |
# Purpose: get the RSS feed for a YouTube page | |
# Inspired By: https://eggfreckles.net/notes/youtube-rss/ | |
# Gist: https://gist.github.com/tjluoma/fdbc63ceb78a2aecd3d638fd18b6ec6e | |
# | |
# From: Timothy J. Luoma | |
# Mail: luomat at gmail dot com | |
# Date: 2020-01-17; updated 2021-01-10 | |
# 2021-01-10 YouTube currently has both 'rssUrl' and |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
This work, excluding the Arch Linux logo, is made available under CC0: https://creativecommons.org/publicdomain/zero/1.0/ |
It "types" the contents of the clipboard.
Why can't you just paste the contents you ask? Sometimes pasting just doesn't work.
The Windows version is written in AutoHotKey and easily compiles to an executable. It's a single line script that maps Ctrl-Shift-V to type the clipboard.
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### |
#include <IRremote.h> | |
IRsend irsend; | |
#define onOffReceived 10 | |
#define energyRcv 11 | |
#define avMode 12 | |
#define input 13 | |
#define tvRad 14 | |
#define list 15 | |
#define quickView 16 | |
#define volumeUp 17 |
//Compile: gcc xgrabkey.c `pkg-config --cflags --libs x11` | |
#include <stdio.h> | |
#include <X11/Xlib.h> | |
int | |
main () | |
{ | |
Window root; | |
Display *dpy = NULL; |