=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
BrainFuck Programming Tutorial by: Katie
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
#!/bin/bash | |
# only works atm if only one jdk package in downloads | |
DOWNLOADS=$HOME/Downloads | |
CURRENT_VERSION=$(java -version 2>&1) | |
JDK=` ls $DOWNLOADS | grep "jdk"` | |
STUDIO_URL=http://dl.google.com/android/studio/install/0.3.2/android-studio-bundle-132.893413-linux.tgz | |
if [ "uname -m" == "i386" -o "uname -m" == "i686" ]; then | |
ARCH=32 | |
else |
package main | |
import ( | |
"log" | |
"net" | |
) | |
func main() { | |
// listen to incoming udp packets | |
pc, err := net.ListenPacket("udp", ":1053") |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <mysql/mysql.h> | |
/* | |
The program is a demonstration of using prepared statements to perform operations on the below table in mariadb. | |
The statements include: insert, select, delete, etc. | |
CREATE TABLE person ( |