Skip to content

Instantly share code, notes, and snippets.

View JoseCanova's full-sized avatar
🎯
Focusing

José Carlos Canova JoseCanova

🎯
Focusing
View GitHub Profile
@JoseCanova
JoseCanova / springer-free-maths-books.md
Created March 11, 2024 18:52 — forked from saurabh-kataria/springer-free-maths-books.md
Springer have made a bunch of books available for free, here are the direct links
@dherges
dherges / http-client-feature.service.ts
Last active March 12, 2023 14:50
Angular HttpClient (5)
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders, HttpParams, HttpResponse } from '@angular/common/http';
import { Observable } from 'rxjs/Observable';
/** This class implements some features that should be tested. */
@Injectable()
export class HttpClientFeatureService {
constructor(
private http: HttpClient
@rponte
rponte / StringUtils.java
Last active September 12, 2024 16:18
Removing accents and special characters in Java: StringUtils.java and StringUtilsTest.java
package br.com.triadworks.rponte.util;
import java.text.Normalizer;
public class StringUtils {
/**
* Remove toda a acentuação da string substituindo por caracteres simples sem acento.
*/
public static String unaccent(String src) {