Skip to content

Instantly share code, notes, and snippets.

View 1Caxz's full-sized avatar
💯
Inspired

Saiful I. Wicaksana 1Caxz

💯
Inspired
View GitHub Profile
@1Caxz
1Caxz / pocketsphinx-params.txt
Created August 15, 2018 08:29
Pocketsphinx Params
.TH POCKETSPHINX_CONTINUOUS 1 "2016-04-01"
.SH NAME
pocketsphinx_continuous \- Run speech recognition in continuous listening mode
.SH SYNOPSIS
.B pocketsphinx_continuous
.RI [ \fB\-infile\fR
\fIfilename.wav\fR ]
[ \fB\-inmic yes\fR ]
[ \fIoptions\fR ]...
.SH DESCRIPTION
<?php
/*
(2014) Main source -> http://lancenewman.me/posting-a-photo-to-instagram-without-a-phone/
I just managed to sniff Instagram traffic and fixed the code
-- Have fun - batuhan.org - Batuhan Katırcı
--- for your questions, comment @ http://batuhan.org/instagram-photo-upload-with-php/
@1Caxz
1Caxz / eliza.swift
Created November 13, 2018 03:31 — forked from hollance/eliza.swift
The classic ELIZA chat bot in Swift.
/*
Joseph Weizenbaum's classic ELIZA chat bot in Swift.
Based on the IBM PC BASIC program from CREATIVE COMPUTING by Patricia
Danielson and Paul Hashfield, and the Java adaptation by Jesper Juul.
Run this script from Terminal:
$ swift eliza.swift
Press Ctrl-C or Ctrl-D to quit. (Or type "shut up".)
@1Caxz
1Caxz / go-ssl.go
Last active December 12, 2018 16:51
Perfect SSL Labs Score with Go
package main
import (
"crypto/tls"
"log"
"net/http"
)
func main() {
mux := http.NewServeMux()
@1Caxz
1Caxz / nginx.conf
Created May 24, 2019 09:30 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@1Caxz
1Caxz / git-command-basic.txt
Last active August 11, 2019 07:33
Git Command Basic
--INIT REPO--
$ cd [REPO LOCAL DIR]
$ git init
$ git clone [URL REPO] .
--COMMIT & PUSH--
$ cd [REPO LOCAL DIR]
$ gid add .
$ git commit -m "[DESCRIPTIONS]"
$ git push origin [BRANCH NAME]
@1Caxz
1Caxz / letsencrypt-command.txt
Last active October 20, 2019 18:37
Letsencrypt Commad
Install
$ apt-get install letsencrypt
Register SSL Domain (NGINX)
$ letsencrypt --nginx -d domain.com -d www.domain.com
RENEW CERT WITH CLOUDFLARE CDN:
letsencrypt certonly --webroot --webroot-path /var/path/to/web/root/html/ --renew-by-default --email [email protected] --text --agree-tos -d xdiseases.com -d www.xdiseases.com
@1Caxz
1Caxz / adb-wifi-terminal.txt
Created August 23, 2019 04:55
ADB Wifi Connect MacOS
$ adb devices // Check available devices
$ adb -s [DEVICE_NAME] shell ifconfig //Check the ip address
$ adb -s [DEVICE_NAME] tcpip 5555
$ adb connect [IP_DEVICE]:555
@1Caxz
1Caxz / ubuntu-image-optimization-command.txt
Created August 27, 2019 09:41
Ubuntu Image Optimization (JPG & PNG)
-- COMMANDS --
$ sudo apt-get update
$ sudo apt-get install jpegoptim optipng
$ jpegoptim *jpg --strip-all && optipng *.png -strip all
NOTE:
`--strip-all` used to remove the exif header from images.
@1Caxz
1Caxz / wiki-dead-link.txt
Last active April 26, 2022 03:23
Wikipedia Dead Link [SEO Backlink]