Skip to content

Instantly share code, notes, and snippets.

{% if latest_post_list %}
{% for post in latest_post_list %}
<li><a href="{% url 'blog:view_post' post.id %}">{{post.title_text}}</a>&nbsp;{{post.pub_date}}</li>
{% endfor %}
boot.ts(12,17): error TS2339: Property 'disableVisabilityChange' does not exist on type 'Stage'.
boot.ts(15,20): error TS2339: Property 'pageAlignHorizontally' does not exist on type 'Point'.
boot.ts(20,14): error TS2339: Property 'scaleMode' does not exist on type 'Stage'.
boot.ts(20,33): error TS2339: Property 'StageScaleMode' does not exist on type 'typeof Phaser'.
boot.ts(21,14): error TS2339: Property 'forceLandscape' does not exist on type 'Stage'.
boot.ts(22,20): error TS2339: Property 'pageAlignHorizontally' does not exist on type 'Point'.
boot.ts(23,20): error TS2339: Property 'setScreenSize' does not exist on type 'Point'.
public class LeaveGifts : ChildSituation<GiftGiverSituation>
{ //** situation that finds santa object, routes to it and leaves presents.
public LeaveGifts(GiftGiverSituation parent) : base(parent)
{
}
public override void Init(GiftGiverSituation parent)
{
this.findGiftGiverObject();
public class LeaveGifts : ChildSituation<GiftGiverSituation>
{ //** situation that finds santa object, routes to it and leaves presents.
public LeaveGifts(GiftGiverSituation parent) : base(parent)
{
}
public override void Init(GiftGiverSituation parent)
{
this.findGiftGiverObject();
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:id="@+id/action_search"
android:icon="@drawable/ic_action_search"
android:title="@string/action_search"
android:showAsAction="always" />
<item android:id="@+id/action_new"
android:title="@string/action_new"
android:showAsAction="always" />
public void dropChecker(int column, int player) {
int y = 0;
while(y < grid[0].length-1 && grid[column][y] == 0) {
y++;
System.out.println(column + ", " + y);
}
grid[column][y] = player;
System.out.println("FINAL: " + grid[column][y]);