Skip to content

Instantly share code, notes, and snippets.

View soumyabrataghosh's full-sized avatar
🦖

soumya/b/ghosh soumyabrataghosh

🦖
View GitHub Profile
@soumyabrataghosh
soumyabrataghosh / docker-compose.yml
Created February 15, 2022 10:42
Obiba/OPAL Docker-compose
version: '3'
services:
opal:
image: obiba/opal:latest
ports:
- "8843:8443"
- "8880:8080"
links:
- rock
- mongo
1.4 2.2 5.7 9.6 13.5 16.7 18.7 18.4 14.3 9.9 5.2 2.3
3.8 5.2 9.8 14.4 18.4 21.7 23.9 23.5 19 13.5 7.7 4.5
-1 -0.7 2 5.1 8.7 11.8 13.8 13.6 10.3 6.6 2.8 0
71.5 59.5 56.6 49.4 73.3 73 72.1 71.9 66.6 76.2 71.7 89.5
52 79.5 137.1 197.5 226.3 241.2 257.6 237.1 174.9 106.7 51.1 41.9
@soumyabrataghosh
soumyabrataghosh / open file dialog
Last active March 4, 2020 16:29 — forked from den-run-ai/open file dialog
Open file dialog for default ipython notebook in Anaconda
def openfile_dialog():
from PyQt5 import QtGui
from PyQt5 import QtGui, QtWidgets
app = QtWidgets.QApplication([dir])
fname,_filter = QtWidgets.QFileDialog.getOpenFileName(None, "Select a file...", '.', filter="All files (*)")
return str(fname)
cd
cd Desktop/
cd emSigner/
java -jar emsigner_WS_OMM
@soumyabrataghosh
soumyabrataghosh / FormKeep+AJAX+WordPress.html
Created April 3, 2015 22:47
FormKeep + AJAX Submission + Success Message + URL Location + WordPress
<form method="POST" class="ajax">
<input type="text" name ="URL Location" id="urlLoc" style="display:none">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<input type="submit" value="Submit">
<div class="alert-success"></div>
</form>
@soumyabrataghosh
soumyabrataghosh / FormKeep+AJAX.html
Last active August 29, 2015 14:18
FormKeep + AJAX Submission + Success Message + URL Location
<form method="POST" class="ajax">
<input type="text" name ="URL Location" id="urlLoc" style="display:none">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<input type="submit" value="Submit">
<div class="alert-success"></div>
</form>