Skip to content

Instantly share code, notes, and snippets.

@Riduidel
Riduidel / keytool-import.sh
Last active January 24, 2018 08:10 — forked from jirutka/keytool-import.sh
Script to import key/certificate pairs into an existing Java keystore
#!/bin/bash
#
# The MIT License
#
# Copyright 2013-2015 Jakub Jirutka <jakub@jirutka.cz>.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@Riduidel
Riduidel / offre_christophe.md
Created August 2, 2012 14:31 — forked from looztra/awl-to-ts-ts-itsm.md
Offre d'emploi Atos Worldine

Atos Worldline est le centre d’expertise d’Atos pour les services transactionnels de haute technologie : services end to end, paiements électroniques (émission, acquisition, terminaux, solutions de paiement et traitement de cartes), eCS (services en ligne pour les clients, les citoyens et les communautés), ainsi que services pour les marchés financiers.

Nous recherchons un développeur/architecte/"technical project leader" java pour intégrer une équipe de développeurs qui met en œuvre les outils de pilotage de la production au sein de la société: supervision, génération/gestion des configurations, automatisation, orchestration, métrologie (performance des applications, performance des plateformes techniques, comportement des applications hébergées).

Comme tout le monde, c'est vrai, on pourrait vous parler de responsabilités, de notre CE ou encore d’autonomie. Vous vanter nos projets vraiment innovants et aussi nos missions variées pour vous plaire. Nous pourrions vous dire tout ça pour avoir la garantie que

private void removeJavaFXMethods(Set<Method> methods) {
try {
// Never load twice a Java class, it's really an heavy code fragment, requiring class path and file parsing, and so on
Class fxObject = Class.forName("com.sun.javafx.runtime.FXObject");
if (fxObject.isAssignableFrom(moduleClass)) {
Iterator<Method> iterator = methods.iterator();
while (iterator.hasNext()) {
Method m = iterator.next();
if (m.getDeclaringClass().equals(fxObject))
// Will only work if input set allows remove operation, which seems in no way guaranteed to me. It would be better to re-create set with correct methods