Skip to content

Instantly share code, notes, and snippets.

View Onjanirina's full-sized avatar
🏠
Working from home, with Prestashop, Dolibarr, Sellsy

RAKOTONIAINA Onjanirina Onjanirina

🏠
Working from home, with Prestashop, Dolibarr, Sellsy
View GitHub Profile
@NicoSB
NicoSB / basic-card.json
Last active June 13, 2020 23:10
Actions on Google Conversation API v2 - Sample Responses
{
"items": [
{
"simpleResponse": {
"textToSpeech":"This is the first simple response for a basic card"
}
},
{
"basicCard": {
"title":"Title: this is a title",
@Onjanirina
Onjanirina / codeforces-200b.java
Created June 25, 2012 06:31
Solution for 200B - Drinks on CodeForces (Round 126, Div2)
/**
* CodeForces - Round 126 (Div2) - Problem B - Drinks
* http://codeforces.com/contest/200/problem/B
*/
import java.io.*;
/**
* */
public class Solution {
@Onjanirina
Onjanirina / codeforces-200c.java
Created June 25, 2012 06:26
Solution for 200C - Football Championship on CodeForces
/**
* CodeForces - Round 126(Div2) - Problem C - Football Championship.
* http://codeforces.com/problemset/problem/200/C
*/
import java.io.*;
import java.util.*;
/**
* */
public class Solution {
@rvivek
rvivek / antichess.cpp
Created May 7, 2012 00:28
Anti-chess sample code snippet
#include<iostream>
#include<sstream>
#include<vector>
#include<algorithm>
#include<math.h>
using namespace std;
struct MoveResult{
int status;
@Onjanirina
Onjanirina / Solution.java
Created April 29, 2012 13:57
InterviewStreet.com Sample Java Solution Class
/** Solution.java (RAKOTONIAINA Onjanirina)
* Template for InterviewStreet Solution Class, reading from STDIN and writing to STDOUT, STDERR.
*************************************************************************************************/
import java.io.*;
/**
* @class Solution
* */
public class Solution {