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
The following contains list of spam callers banned for various reasons. | |
This list will evolve over time. | |
-------------------------------------------------------------------------------- | |
Date Phone Number Description | |
-------------------------------------------------------------------------------- | |
2024-06-13 +62 21 3020 #### CIMB | |
2024-06-13 +62 21 3114 11## CIMB | |
2024-06-13 +62 21 3117 39## CIMB | |
2024-06-13 +62 21 3115 65## HSBC |
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/env kotlin | |
import java.security.MessageDigest | |
import java.util.Base64 | |
import kotlin.random.Random | |
/** | |
* Proof Key for Code Exchange (PKCE) for OAuth 2.0 | |
*/ | |
fun pkce() { |
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
import com.fasterxml.jackson.core.JsonGenerator | |
import com.fasterxml.jackson.databind.JsonSerializer | |
import com.fasterxml.jackson.databind.SerializerProvider | |
import org.springframework.boot.jackson.JsonComponent | |
import org.springframework.data.domain.Page | |
/** | |
* JSON serializer for [Page]. | |
* | |
* @since 2023-11-27 |
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
import java.util.function.Predicate | |
import java.util.regex.Pattern | |
import org.springframework.stereotype.Component | |
/** | |
* Email address format validator. | |
* | |
* @author Jeffrey Sadeli | |
* @since 2023-05-16 | |
*/ |
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
The following contains list of vendors banned from future use/contracts/work for various reasons. | |
This list will evolve over time. | |
-------------------------------------------------------------------------------- | |
Date Vendor Description | |
-------------------------------------------------------------------------------- |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
private readonly DockSiteLayoutSerializer _dockSiteLayoutSerializer; | |
private string _pendingDockSiteLayout; | |
public void Initialize() | |
{ | |
_dockSiteLayoutSerializer = new DockSiteLayoutSerializer() { SerializationBehavior = DockSiteSerializationBehavior.All }; | |
this.mainDockSite.Loaded += OnDockSiteLoaded; | |
// | |
// initialize dockable windows (documents and tools) |
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
using System; | |
using System.ComponentModel; | |
using System.Globalization; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Data; | |
using System.Windows.Markup; | |
using System.Xaml; | |
namespace YourNamespace.MarkupExtensions |