github...
sqlcmd -S <ip> -d <dbname> -U <username> -P <password> -I
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
import os | |
import cv2 | |
import shutil | |
import numpy as np | |
import skimage | |
from skimage import io | |
from skimage import transform as tf | |
import argparse | |
import torch |
#!/usr/bin/env python3 | |
from tweepy.streaming import StreamListener | |
from tweepy import OAuthHandler | |
from tweepy import Stream | |
import tweepy | |
import sys | |
class StdOutListener(StreamListener): |
It has been a year since I gave my talk titled "Debunking AI". Here's a mini thread representing my thoughts: [start] | |
"Debunking AI" : A Thread | |
A year ago, I had come to realize how misinformed most of the people were and how today's social media and marketing schemes have generated a type of misguided "fear" in people. [1/n] | |
The only fear should be the mishandling of algorithms and misdirected intellectual properties, which in some ways is related to privacy. [2/n] | |
Nevertheless, I tried to give the presentation from my engineering perspective as to how algorithms are powerful and stupid at the same time. [3/n] | |
I did try giving them perspective on trending topics like fake news, deep fakes, bots, and surveillance. [4/n] | |
And after a year, nothing has changed, except for the fact that the hype-train is still going on surrounding AI. [5/n] | |
It's okay to think AI as a part of a tool, to be able to integrate to existing systems allowing "human" in the loop. But from a developer/researcher/engineering perspective |
#!/usr/bin/env python3 | |
import html2text | |
import requests | |
from bs4 import BeautifulSoup | |
class ManualError(Exception): | |
def __init__(self, args): | |
self.args = args |
#!/bin/bash | |
echo "i am paradox" | |
#ffmpeg -i audio.mp3 -ignore_loop 0 -i test.gif -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" -shortest -strict -2 -c:v libx264 -threads 5 -c:a aac -b:a 192k -pix_fmt yuv420p -shortest final.mp4 | |
# ffmpeg -i audio.mp3 -ignore_loop 0 -i test.gif -shortest -strict -2 -c:v libx264 -threads 5 -c:a aac -b:a 192k -pix_fmt yuv420p -shortest final.mp4 | |
# ffmpeg -i audio.mp3 -ignore_loop 0 -i test.gif -vf "scale=trunc(iw/2)*1:trunc(ih/2)*2" -shortest -strict -2 -c:v libx264 -threads 5 -c:a aac -b:a 192k -pix_fmt yuv420p -shortest final.mp4 |
github...
sqlcmd -S <ip> -d <dbname> -U <username> -P <password> -I