Skip to content

Instantly share code, notes, and snippets.

void setup() {
size(602, 400);
ellipse(50, 50, 60, 60);
}
float xPosition = 100f;
float yPosition = 100f;
int t = 0;
void setup() {
size(600, 400);
ellipse(50, 50, 60, 60);
}
int xPosition = 100;
int yPosition = 100;
int t = 0;
package com.birohcek;
import java.util.*;
public class Main {
public static void main(String[] args) {
// write your code here
package com.birohcek;
import java.io.*;
import java.util.Scanner;
public class Create {
public static void main(String[] args) {
import javax.swing.*;
import java.awt.*;
public class Demo {
public static void main(String[] args) {
// JLabel northLabel = new JLabel("North");
JFrame application = new JFrame();
import android.text.SpannableStringBuilder;
import java.util.ArrayDeque;
import java.util.Deque;
import static android.text.Spanned.SPAN_INCLUSIVE_EXCLUSIVE;
/** A {@link SpannableStringBuilder} wrapper whose API doesn't make me want to stab my eyes out. */
public class Truss {
private final SpannableStringBuilder builder;
private final Deque<Span> stack;
<snippet>
<content><![CDATA[<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>${1:Project Name}</title>
<?php
function create_table_row($variable,$title)
{
$row = '';
if (!empty($variable)) {
$row .='<th rowspan="'.count($variable).'">'.$title.'</th>';
$i = 0; $numItems = count($variable);
if($numItems>1)
foreach ($variable as $area ) {
$row .='<td>'.$area.'</td>';
@argestes
argestes / dabblet.css
Created January 24, 2013 19:55
Untitled
div {
width: 100px;
height: 50px;
/* The background is used to specify the border background */
background: -moz-linear-gradient(top,#f00, #ff0);
background: -webkit-linear-gradient(top,#fff,#222, #fff);
/* Background origin is the padding box by default.
Override to make the background cover the border as well. */
-moz-background-origin: border;