Skip to content

Instantly share code, notes, and snippets.

View jotisa's full-sized avatar
💭
WordPressING

Jonatan Tisnado jotisa

💭
WordPressING
View GitHub Profile
@jotisa
jotisa / freepbxarmbian
Last active January 30, 2023 21:52 — forked from morsine/freepbxarmbian
How to install FreePBX 15 with Asterisk 16 on Armbian or Orange Pi
# Note: These steps worked for me, but it might not work for you. This requires changing some stuff which might break your system.
# I am not responsible for anything
# be the root user!
sudo -i
# change the sources.list file contents
# open it and remove everything inside
nano /etc/apt/sources.list
@zhmz1326
zhmz1326 / sigmoid_plot.py
Created November 16, 2015 05:15
Draw sigmoid function by matplotlib
sigmoid = lambda x: 1 / (1 + np.exp(-x))
x=linspace(-10,10,10)
y=linspace(-10,10,100)
plot(x,sigmoid(x),'r', label='linspace(-10,10,10)')
plot(y,sigmoid(y),'b', label='linspace(-10,10,100)')
grid()
xlabel('X Axis')
ylabel('Y Axis')
title('Sigmoid Function')
suptitle('Sigmoid')
<?php
/*
SimpleXLSX php class v0.6.8
MS Excel 2007 workbooks reader
Example 1:
$xlsx = new SimpleXLSX('book.xlsx');
print_r( $xlsx->rows() );
Example 2:
@debloper
debloper / xrandr.sh
Last active February 10, 2024 02:30
Add system unrecognized but monitor supported resolution in X
#!/bin/bash
# Copyright (c) 2021 Soumya Deb <debloper@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions: