Skip to content

Instantly share code, notes, and snippets.

View arielmagbanua's full-sized avatar
🏠
Working from home

Ariel Magbanua arielmagbanua

🏠
Working from home
View GitHub Profile
@arielmagbanua
arielmagbanua / rounded_rectangle.xml
Created April 16, 2015 14:18
Android Drawable Shape: Rectangle with Rounded Corners
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<!-- fill/color -->
<solid
android:color="#ff0000"/>
<!-- Control the width and height of the shape -->
<size
@arielmagbanua
arielmagbanua / hexToBinaryAndWrite.php
Last active November 25, 2022 05:19
Convert Hex LONGBLOB to Image in Laravel
<?php
// references
// https://stackoverflow.com/questions/13274691/coverting-hex-to-image-in-php
// https://stackoverflow.com/questions/45711484/how-to-convert-image-stored-in-db-as-hex-into-visible-image
$hexString = '0xffd8ffe000104a46494600010100000100010000ffe103224578696600004d4d002a00000008000c010e0002000000200000009e010f000200000012000000be011000020000000b000000d0011200030000000100010000011a000500000001000000dc011b000500000001000000e40128000300000001000200000131000200000020000000ec01320002000000140000010c013b00020000000c00000120829800020000000c0000012c87690004000000010000013800000000557273696e69612063616c656e64756c69666f6c6961203230303730313939004e494b4f4e20434f52504f524154494f4e004e494b4f4e20443730300000002dc6c000002710002dc6c00000271041646f62652050686f746f73686f702043533620284d6163696e746f73682900323031373a31303a30392031373a32353a313500486f77617264205269636500486f776172642052696365000020829a000500000001000002be829d000500000001000002c6882200030000000100030000882700030000000100c800009000000700000004
@arielmagbanua
arielmagbanua / concat.py
Created September 30, 2021 15:13
Concatenate Tuple
# concatenate tuple
data = (1, 2, 3)
result = ''.join([str(item) for item in data])
print(result)
@arielmagbanua
arielmagbanua / riceBags.md
Last active September 30, 2021 08:08
Rice Bags

Rice Bags

Provided that you have a given number big rice bags (5 kilos each), and then display the number of bags to be used for a certain kilos of rice as an input.

Starter Code

public class App {
 public static void main(String[] args) throws Exception {
@arielmagbanua
arielmagbanua / draw-box.md
Created September 17, 2021 07:31
Draw a Box

Draw a Box

Write a Java program that can draw a box with the given height, width, and character.

Starter Code

public class App {
    public static void main(String[] args) throws Exception {
 // scanner
@arielmagbanua
arielmagbanua / character-counter.md
Created September 17, 2021 07:21
Character Counter

Character Counter

Write a Java program that counts a character from the input string.

Starter Code

public class App {
    public static void main(String[] args) throws Exception {
 // scanner
@arielmagbanua
arielmagbanua / vowels-consonants.md
Created September 17, 2021 07:02
Vowels / Consonants

Vowels / Consonants

Write a Java program that counts the vowels and consonants of a input string.

Starter Code

public class App {
    public static void main(String[] args) throws Exception {
 // scanner
@arielmagbanua
arielmagbanua / reverseWords.md
Created September 16, 2021 08:47
Reversed Sentence

Reverse Words

Write a Java program to reverse the words in a sentence.

Starter Code

public class App {
    public static void main(String[] args) throws Exception {
 // scanner
@arielmagbanua
arielmagbanua / factorsn.md
Created September 16, 2021 08:33
Factors of a Number

Factors of a Number

Write a Java program to accepts an integer and count the factors of the number.

Starter Code

public class App {
    public static void main(String[] args) throws Exception {
 // scanner
@arielmagbanua
arielmagbanua / circleprod.md
Last active September 16, 2021 08:22
Circle

Circle

Write a Java program to print the area and perimeter of a circle.

Starter Code

public class App {
    public static void main(String[] args) throws Exception {
 // scanner