- Download the .zip file from Releases:
- Unzip the file and drag into respective directory.
@echo OFF | |
SET subject=%* | |
for %%a in (%*) do set subject=%%a | |
python C:\\Users\\Max\\ffmpeg-compress\\compress.py %subject% |
#import "PSTableCell.h" | |
#include <sys/cdefs.h> | |
__BEGIN_DECLS | |
extern NSString *const PSAccessoryKey; // @"accessory" | |
extern NSString *const PSActionKey; // @"action" | |
extern NSString *const PSAdjustFontSizeToFitWidthKey; // @"adjustFontSizeToFitWidth" | |
extern NSString *const PSAlignmentKey; // @"alignment" | |
extern NSString *const PSAppGroupBundleIDKey; // @"appGroupBundleID" |
First, completely uninstall Wine or get a fresh server to do this on. A fresh server is the best option here.
Next Install wine-stable with the following tutorial: https://tecadmin.net/install-wine-on-ubuntu/
Once you have that installed make sure wine --version
returns something like 5.0.1
or above.
from flask import Flask | |
from flask_restful import Api | |
from requests_oauthlib.oauth1_auth import Client | |
config = { | |
'twitter_consumer_key': 'ENTER TWITTER CONSUMER KEY', | |
'twitter_consumer_secret': 'ENTER TWITTER CONSUMER SECRET' | |
} | |
app = Flask(__name__) | |
api = Api(app) | |
oauth = Client(config['twitter_consumer_key'], client_secret=config['twitter_consumer_secret']) |
{ | |
"Working Directory" : "\/Users\/max", | |
"Prompt Before Closing 2" : false, | |
"Selected Text Color" : { | |
"Red Component" : 0, | |
"Color Space" : "sRGB", | |
"Blue Component" : 0, | |
"Alpha Component" : 1, | |
"Green Component" : 0 | |
}, |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<dict> | |
<key>phrase</key> | |
<string>⏩</string> | |
<key>shortcut</key> | |
<string>:fast_forward_button:</string> | |
</dict> |
package us.updat.betterparty.utils; | |
import org.json.simple.JSONArray; | |
import org.json.simple.JSONObject; | |
import org.json.simple.parser.JSONParser; | |
import org.json.simple.parser.ParseException; | |
import us.updat.betterparty.BPMain; | |
import us.updat.betterparty.BPParty; |
def uniqnum(num): | |
unique_set = {} | |
for num in str(num): | |
if unique_set.get(num): | |
unique_set[num] += 1 | |
else: | |
unique_set[num] = 1 | |
return unique_set | |
def isPrime(n) : |
First you'll need some dependencies:
pip install supervisor virtualenv
Next you need to make a directory for your application:
cd ~