Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.
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
| # EditorConfig for Cross-Platform Development | |
| # Ensures consistent coding styles across different editors and IDEs | |
| # https://editorconfig.org | |
| root = true | |
| # Default settings for all files | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Interactive Timeline Pro</title> | |
| <style> | |
| /* 1. Global Styles & Fonts */ | |
| /* ------------------------------------------- */ | |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap'); |
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
| #!/bin/bash | |
| # ============================================================================== | |
| # GitHub Repository Management Script (with Multi-Delete) | |
| # | |
| # Description: | |
| # This script securely authenticates with GitHub to list repositories for a | |
| # specified user. It allows filtering by repository type (public, private, all) | |
| # and enables bulk deletion by selecting from a numbered list. | |
| # |
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
| export const removeHash = (hex: string) => hex.replace('#', ''); | |
| export const parseHex = (hex: string) => { | |
| const [r, g, b] = hex.match(/.{1,2}/g) as string[]; | |
| return [parseInt(r, 16), parseInt(g, 16), parseInt(b, 16)]; | |
| }; | |
| export const parseRgb = (rgb: string) => { | |
| const [r, g, b] = rgb.match(/\d+/g) as string[]; | |
| return [parseInt(r, 10), parseInt(g, 10), parseInt(b, 10)]; |
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 android.app.Activity; | |
| import android.app.Application; | |
| import android.content.Context; | |
| import android.content.ContextWrapper; | |
| import android.os.Bundle; | |
| import android.os.Looper; | |
| import android.os.MessageQueue; | |
| import android.util.Log; | |
| import android.view.View; | |
| import android.view.ViewTreeObserver; |
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
| package uk.co.digitaljigsaw.utils; | |
| import java.util.Calendar; | |
| import java.util.Date; | |
| import android.R.string; | |
| import android.content.Context; | |
| import android.content.SharedPreferences; |
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
| public void transformPage(View view, float position) { | |
| int pageWidth = view.getWidth(); | |
| if (position < -1) { // [-Infinity,-1) | |
| // This page is way off-screen to the left. | |
| view.setAlpha(0); | |
| } else if (position <= 1) { // [-1,1] | |
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.Scanner; | |
| /** | |
| * @author Rajesh, Kanakamedala | |
| */ | |
| public class StarPrint { | |
| public static void main(String[] args) { | |
| // TODO Auto-generated method stub | |
| int n; |
NewerOlder
