Skip to content

Instantly share code, notes, and snippets.

View eeertekin's full-sized avatar
🤔

Ertuğrul Emre Ertekin eeertekin

🤔
View GitHub Profile
wget https://us.download.nvidia.com/tesla/460.73.01/NVIDIA-Linux-x86_64-460.73.01.run
bash NVIDIA-Linux-x86_64-460.73.01.run
<script src="//js.jotform.com/actions.js"></script>
<script>
// INIT JotFormActions
if (typeof window.JotFormActions === "undefined") {
window.JotFormActions = JotFormActions("project-id");
}
</script>
// Simple tick on an action (click, view, scroll, or anything else)
<?
## Example in PHP
class Decryption
{
public $privateKey = '{yourPrivateKey}';
public function decrypt($data)
{
## /lib/systemd/system/supervisord.service
## systemctl enable supervisord.service
## systemctl start supervisord.service
[Unit]
Description=Supervisor process control system for UNIX
Documentation=http://supervisord.org
After=network.target
[Service]
@eeertekin
eeertekin / backend-architectures.md
Last active September 23, 2019 09:21 — forked from ngocphamm/backend-architectures.md
Backend Architectures
@eeertekin
eeertekin / bundle.sh
Created December 4, 2014 22:05
Add vim-pathogen bundle as git submodules
#
# Add vim-pathogen bundle as git submodules
#
for plugin in `ls bundle`; do
URL=`grep -A 1 origin bundle/$plugin/.git/config | grep "url =" | awk '{print $3}'`
git submodule add $URL bundle/$plugin ;
done
// Signature inflation/deflation
var inflateToJsonSignature = function (deflatedSig) {
var intArray = [];
for (var i = 0; i < deflatedSig.length; i++) {
intArray.push((deflatedSig[i].charCodeAt()).toString(16));
}
var sigString = "[";
for (var j = 0; j < intArray.length; j = j + 4) {
sigString += (