- How to create a modded minecraft server
- How to create a Minecraft server
- How to create a StarMade server
- View Distance: optimize your Minecraft server
- How to use colors in Minecraft messages
- How to add an administrator to the control panel?
- How to restore an expired server?
- How to change the Minecraft gamemode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var HytaleApi = require('hytale-api-sdk'); | |
var api = new HytaleApi.ArticlesApi(); | |
var callback = function(error, data, response) { | |
if (error) { | |
console.error(error); | |
} else { | |
console.log('API called successfully. Returned data: ' + data); | |
console.log(data); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ArticlesApiExample { | |
public static void main(String[] args) { | |
ArticlesApi apiInstance = new ArticlesApi(); | |
try { | |
// get latest articles | |
List<Article> result = apiInstance.getArticles(); | |
System.out.println(result); | |
// show article |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once(__DIR__ . '/vendor/autoload.php'); | |
$apiInstance = new Swagger\Client\Api\ArticlesApi(); | |
try { | |
// get latest articles | |
$result = $apiInstance->getArticles(); | |
print_r($result); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use Data::Dumper; | |
use Getopt::Long; | |
# author: Gavin Towey, 2008 [email protected] | |
# todo, add "follow thread" capability | |
# so we can give a process name or thread id & see | |
# all activity in sequence for each thread |
-
Fork Fabiens repository: http://github.com/fabpot/symfony.git
-
Clone your fork and install/update vendors (I use my personal fork for now):
git clone [email protected]:pminnieur/symfony.git symfony
cd symfony && sh install_vendors.sh && sh update_vendors.sh
phpunit
-
Integrate Fabiens repository into your local clone:
API REST ( http://bit.ly/2mQ6BNB )
Initialiser une API Rest, avec la ressource /api/tweets
.
Les méthodes suivantes seront implémentés :
cget()
: retourne la liste de tous les tweetsget($id)
: retourne un tweet par son IDpost()
: création d'un Tweet