Skip to content

Instantly share code, notes, and snippets.

View kotishe's full-sized avatar
I may be slow to respond.

kotishe

I may be slow to respond.
View GitHub Profile
@Radiergummi
Radiergummi / Cryptor.php
Last active June 24, 2024 19:54
A PHP class to encrypt and decrypt strings using a static application secret. Input is converted to hex strings to enable easier handling
<?php
namespace Vendor\Library;
use function bin2hex;
use function hex2bin;
use function openssl_decrypt;
use function openssl_encrypt;
use function random_bytes;
@jirihnidek
jirihnidek / getaddrinfo_example.c
Last active February 9, 2025 12:12
Example of getaddrinfo() program.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <netdb.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
int
lookup_host (const char *host)
@inakagawa
inakagawa / functions.php
Last active May 17, 2016 02:08
WordPress: Permalink from slug - shortcode
<?php
function sc_getpermalink_by_path($args){
$atts = shortcode_atts(
array(
'slug' => '',
'post_type' => 'page',
'ret_type' => 'OBJECT'
),
$args, 'sc_path');
$pageobj = get_page_by_path($atts['slug'], $atts['ret_type'], $atts['post_type']);
anonymous
anonymous / untrusted-lvl20-solution.js
Created May 17, 2016 01:56
Solution to level 20 in Untrusted: http://alex.nisnevich.com/untrusted/
/*****************
* bossFight.js *
*****************
*
* NO FARTHER, DR. EVAL!!!!
* YOU WILL NOT GET OUT OF HERE ALIVE!!!!
* IT'S TIME YOU SEE MY TRUE FORM!!!!
* FACE MY ROBOT WRATH!!!!!
*/
@jrnt30
jrnt30 / Terraform-State-Ideas.md
Created May 17, 2016 01:55 — forked from apparentlymart/Terraform-State-Ideas.md
Terraform State Integrity Issues

Issues with Terraform State Management

The idea of "state" is the lynchpin of Terraform, and yet Terraform's workflow is fraught with gotchas that can lead to the loss or destruction of state. This doc is a set of notes about issues I've encountered, what caused them, and in many cases ideas about how to improve Terraform to avoid or reduce the chances of them.

Each of these scenarios has occured at least within my team. Each time one of these occurs it erodes people's confidence in Terraform, giving it a reputation for being fragile and unforgiving of errors. This this document is not written just to criticize but rather to identify ways in which the situation could be improved.

@duan-li
duan-li / my.ini
Created May 17, 2016 01:54
disable and remove bin log file
[mysqld]
skip-log-bin
innodb_file_per_table=1
expire_logs_days = 1
max_binlog_size = 10M
#use following detail to clean everything about bin log
#PURGE BINARY LOGS TO 'mysql-bin.000029';
#RESET MASTER;
@kiler129
kiler129 / cloudflare_update.script
Last active January 29, 2025 08:23
Automatic script for Mikrotik RouterOS updating record on CloudFlare.
#########################################################################
# ================================================== #
# $ Mikrotik RouterOS update script for CloudFlare $ #
# ================================================== #
# #
# - You need a CloudFlare account & api key (look under settings), #
# a zone and A record in it #
# - All variables in first section are obvious, except CFid, #
# To obtain CFid use following command in any unix shell: #
# curl https://www.cloudflare.com/api_json.html -d 'a=rec_load_all' -d 'tkn=YOUR_API_KEY' -d '[email protected]' -d 'z=domain.com'|python -mjson.tool
anonymous
anonymous / untrusted-lvl17-solution.js
Created April 17, 2015 23:06
Solution to level 17 in Untrusted: http://alex.nisnevich.com/untrusted/
/***************
* pointers.js *
***************
*
* You! How are you still alive?
*
* Well, no matter. Good luck getting through this
* maze of rooms - you'll never see me or the Algorithm again!
*/
@tpenguinltg
tpenguinltg / potato.bf
Last active September 18, 2015 23:21
potato in brainfuck
+[>++++++[>++++++[>+++>+++>+++<<<-]<-]<-]>>>++++.-.>++++++++.>-----------.<.<.
@kgabis
kgabis / leftright.c
Last active December 25, 2015 23:49
Algorithms 01
#include <stdio.h>
typedef struct {
float x, y;
} vec2;
float vec2_cross(vec2 a, vec2 b) {
return a.x * b.y - a.y * b.x;
}