I use it. If you don't, read these:
You can still ignore semicolons, but know that ASI is a syntactic error correction procedure,
<?php | |
require_once "lib/spyc.php"; | |
$obj = Spyc::YAMLLoad('videos.yml'); | |
//print_r($obj); | |
foreach($obj as $grupo){ | |
echo "<h1>".$grupo['video']."</h1>"; | |
echo "<h3><strong>Arquivo:</strong>".$grupo['arquivo']."</h2>"; | |
echo "<p>".$grupo['descricao']."</p>"; | |
I use it. If you don't, read these:
You can still ignore semicolons, but know that ASI is a syntactic error correction procedure,
Copyright (c) 2011 Simon Walker
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:
/***************** | |
By Param Aggarwal | |
www.feemo.in | |
AccPOV | |
Uses an accelerometer to sense when it is being waved in the air. | |
Uses Arduino Decimilia and Accelerometer and a custom made shield for the Arduino. | |
*******************/ | |
// Display goes on PORTD |
#include <SoftwareSerial.h> | |
SoftwareSerial mySerial(2, 3); //RX, TX | |
//Ligando o Shield GSM SIM900. | |
int powerkey = 5; | |
int statuspin = 6; | |
int pinState = 0; |
#!/bin/bash | |
# Change the current directory to the document path. | |
cd "${BB_DOC_PATH%/*}" | |
# Update PATH. | |
PATH=$PATH:/usr/bin/:/usr/local/bin/ | |
PATH=$PATH:/usr/local/bin:/usr/X11/bin:/usr/texbin:/opt/local/bin | |
# Pre-compute the file names used. |
## | |
## @author Jacky Alcine <[email protected]> | |
## @see [TODO: Add URL to post about bit.ly URLs.] | |
## | |
## Add in Bit.ly URL support to pages. | |
require "bitly" | |
# Ensure use of new API. | |
Bitly.use_api_version_3 |
package editabletableview; | |
import javafx.scene.control.ComboBox; | |
import javafx.scene.control.ListCell; | |
import javafx.scene.control.TableCell; | |
class ComboBoxIntegerEditingCell extends TableCell<Person, Integer> { | |
private ComboBox<Integer> comboBox; |
# install dependencies | |
sudo apt-get update | |
sudo apt-get install -y build-essential | |
sudo apt-get install -y cmake | |
sudo apt-get install -y libgtk2.0-dev | |
sudo apt-get install -y pkg-config | |
sudo apt-get install -y python-numpy python-dev | |
sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev | |
sudo apt-get install -y libjpeg-dev libpng-dev libtiff-dev libjasper-dev | |
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="__PACKAGE__" | |
android:versionCode="1" | |
android:versionName="1.0"> | |
<supports-screens | |
android:smallScreens="true" | |
android:normalScreens="true" | |
android:largeScreens="true" |