rails new ror-app-name --api
This step is for creating a very basic level of model for us to work in. If you know already, or wish to apply your own custom models with relationships you can skip this step.
| <?php | |
| /* | |
| Plugin Name: Dynamic Post Types in Jetpack Sitemap (MU) | |
| Description: Dynamically includes all registered public post types (including ACF types) in the Jetpack XML sitemap. | |
| Version: 1.4 | |
| Author: ChatGPT | |
| REF: https://www.advancedcustomfields.com/resources/post-types-and-taxonomies/#registering-custom-post-types | |
| REF: https://developer.jetpack.com/hooks/jetpack_sitemap_post_types/ | |
| */ |
rails new ror-app-name --api
This step is for creating a very basic level of model for us to work in. If you know already, or wish to apply your own custom models with relationships you can skip this step.
| """ | |
| The Pool module provides some classes for managing a fixed-size thread-safe pool of functionally identical objects. One use for this is database connections, which tend to take awhile to create. | |
| Pool | |
| class that manages the pool of objects. | |
| Constructor | |
| class used to create new instances of items in the Pool. | |
| For more details, use pydoc or read the docstrings in the code. |
| package com.wificar.component; | |
| import android.util.Log; | |
| import com.wificar.WificarActivity; | |
| import com.wificar.util.BlowFish; | |
| import com.wificar.util.ByteUtility; | |
| import java.io.ByteArrayOutputStream; | |
| import java.io.IOException; | |
| import java.nio.ByteBuffer; | |
| import org.apache.http.util.ByteArrayBuffer; |