Sunday, April 30, 2017
Announcing Upcoming Giveaway!
Announcing Upcoming Giveaway!
Happy Friday! Since summer school started this week, it actually seems important that today is a Friday days of the week again carry meaning! Where did my summer go?!
**Just an FYI this Sunday I will post my 100 followers giveaway! Some of my blogging friends mentioned they would like to participate, I will be emailing you! If you dont receive an email from me but would like to participate just let me know with a comment or email!**
So far I know of two things that will be up for grabs, my Splat unit and a Vistaprint Groupon voucher for $70 of Vistaprint goodness!
And, I know youre all thinking Vistaprint, Shmistaprint bring on Splat!
Also, I have added the Splat craftivity to my TpT store if youre interested in just the amazingly cute craftivity but dont need a whole unit! (I could have done this months ago, but it didnt occur to me till last night I dont think I have a drop of entrepreneurial blood in me! Live and learn!)
Check it out by clicking the image below:

All right, back to reading Shadow of Night the sequel to A Discovery of Witches. Ive been waiting a year!
Happy Friday!
Mrs. Castro
Available link for download
Monday, April 10, 2017
Anya Shoulder Bag Pattern Tester Makes and Giveaway!!!
Anya Shoulder Bag Pattern Tester Makes and Giveaway!!!






Available link for download
Monday, February 27, 2017
All About The Week Quest Giveaway Winners!
All About The Week Quest Giveaway Winners!
Last week when I was in the grocery store, I happened to see a trial/travel size of John Friedas Curl Reviver Mousse. Since it was like $1-$2 I figured why not try it. I love big hair. There are three things that can never be too high in life - ones heels, hair, and standards. Ha! I forgot it about over the weekend, but found it on Monday morning when I was fixing my hair for work. I absolutely love this product! It gives tons of volume, does not weigh the hair down, and it adds just enough curl - not too tight, but not too dull. It is like a wavy/beachy look. If you want an affordable, good product to add volume, I say give it a try!



Wednesday, my Ipsy bag came! What do you guys think about yours so far? At first glance, I was not excited. I love makeup and color. This bag just seemed kind of... boring. However, now that I have received it, it is not so bad. I am eager to try the hair mask; I am always looking for good products for my hair. I never wear concealer so I am happy to have a tube to try out! If anyone wants to try my facial cleansing wipes for something they received - let me know. I m open!

If you dont know what Ipsy is - it is a monthly makeup bag you receive via mail. It is only $10 a month and with that you get a makeup bag and 3-4 beauty products. You are billed on the first of every month and products arrive between the 10-15th! When you sign up, you get to customize your settings so you get products closely matched to your beauty preferences. If you want to join, please click here and use my link! I will appreciate you!



Available link for download
And The Giveaway Winners Are
And The Giveaway Winners Are
Download the source codes from here.
Requirements - Java Development Kit and Visual Studio.
This article focuses on how to connect a C++ Dynamic Link Library to a Java program using the Java Native Interface. To run a C++ function in a Java program, we would require the C++ function to be in a DLL and this DLL to be loaded at run-time into the memory by the Java program.
Load the library from the Java program using the full path with the load function or let the JVM load the DLL using the system path with the loadLibrary function.
The C++ function is declared native in the Java program. Compile the file to generate the class file using the javac command.

Create a C++ header for the native function using the javah command on the generated class file. A declaration for the function is generated following the syntax java_<class>_<function>.

Create a new project to generate the DLL in Visual C++. The project consists of the header generated from the previous step, a C++ file using the function declaration generated in the header and a header consisting of the required function that is to be used in the Java program. A DLL is generated from this project.


Any C++ application can be created normally which uses the existing function.


Copy the DLL generated from Visual Studio to the path specified in the Java application and run the Java program using the java command.

As a result, the same function was used in a C++ program as well as in a Java program.
Available link for download