- from sqlbolt
- Find the title of each film
SELECT title FROM movies;
- Find the director of each film
| using UnityEngine; | |
| public class Example : MonoBehavoiur | |
| { | |
| [SerializeField] | |
| GameObject prefab; | |
| bool isTrigger = false; | |
| void OnTriggerEnter(Collider col) |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class Utils : MonoBehaviour | |
| { | |
| int[] numbers = new int[] { | |
| 1, 2, 3, 4, 5, 6, 7, 0, 0, 0, 0, 0, 0, 0 | |
| }; |
| using UnityEngine; | |
| using System.Collections; | |
| using UnityEditor; | |
| [CustomEditor (typeof(TriggerContainer))] | |
| public class TriggerContainerEditor : Editor | |
| { | |
| private SerializedObject obj; |
| #!/bin/bash | |
| SAVEIFS=$IFS | |
| IFS=$(echo -en "\n\b") | |
| COUNTER=0 | |
| echo -e "Start converting files..." | |
| notify-send "Start converting files..." | |
| for path in $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS; do |
| #! /bin/sh | |
| bspc config top_padding 24 | |
| bspc config bottom_padding 0 | |
| bspc config left_padding 0 | |
| bspc config right_padding 0 | |
| bspc config border_width 3 | |
| bspc config window_gap 16 | |
| # Borders and gaps |
SELECT title FROM movies;
| def main(): | |
| numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9] | |
| print("Before reverse : ") | |
| print(numbers) | |
| numbers = reverse_array(numbers) | |
| print("") |
| import random | |
| def main(): | |
| random.seed() | |
| numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
| print("Before shuffle : " + str(numbers)) | |
| numbers = shuffle(numbers) | |
| print("After shuffle : " + str(numbers)) | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| #if UNITY_EDITOR | |
| using UnityEditor; | |
| #endif | |
| public class CustomCollision : MonoBehaviour |
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| #include <stdbool.h> | |
| struct OrderInfo | |
| { | |
| int price = 0; | |
| std::string customerName; |