Personalization and value creation
last modified: 2021-03-01
// login and credentials steps are skipped | |
// because it is such a mess | |
// I found no example anywhere of how to build and edit a new Google Slides presentation via the Java API client. | |
// So here you go: how to create two empty slides. | |
Presentation prezTemp = new Presentation(); | |
prezTemp.setTitle("test_" + String.valueOf(Math.random())); |
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package net.clementlevallois.queriestwitterdata.controller; | |
import Twitter.MyOwnTwitterFactory; | |
import com.google.common.collect.HashMultiset; | |
import com.google.common.collect.Multiset; |
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package net.clementlevallois.sshautomator.serversecurization; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.IOException; |
last modified: 2021-03-01
package net.clementlevallois.net.cookieclicker.ultimate; | |
import com.codename1.charts.util.ColorUtil; | |
import com.codename1.components.MultiButton; | |
import com.codename1.components.ScaleImageButton; | |
import com.codename1.ui.Component; | |
import com.codename1.ui.Container; | |
import com.codename1.ui.Font; | |
import com.codename1.ui.Image; | |
import com.codename1.ui.Label; |
upstream glassfish_server { | |
server 127.0.0.1:8080 fail_timeout=0; | |
} | |
server { | |
listen 80; | |
server_name berat.com; | |
return 301 https://$server_name$request_uri; | |
} | |
server { |