Skip to content

Instantly share code, notes, and snippets.

View hanief's full-sized avatar
💻
Developing...

Hanief Utama hanief

💻
Developing...
View GitHub Profile
@hanief
hanief / main.m
Created February 17, 2014 13:48
How many number contained x in between y and z?
/*
Problem: If x, y, and z each is positive integer: between y and z, how many integer number contained x in their digits?
Example: Between 1 and 100, how many integer number contained 14 in their digits? (Solution: 1 number, which is 14).
*/
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[])
{

Security Checklist

Configuration Security

  • Store secrets in environment variables or dedicated secret management systems
  • Never commit secrets to version control
  • Implement secret rotation policies
  • Use different credentials for different environments
  • Encrypt sensitive configuration values

Authentication & Authorization