cfNote is your source for Blog Aggregation in the Coldfusion industry

KraFusion

View This Blog Frequency: 0.0 posts / day

 

Graduate Hotel Nashville WiFi Speedtest

 Mark As Read    

Address: 101 20th Ave N, Nashville, TN 37203Date: 4-16-2022SSID: Graduate_DormPassword: not requiredDown: 14MbpsUp: 14MbpsProvider: ATT Enterprise

KraFusion 733 days ago

Ugly Mugs Coffee WiFi Speedtest

 Mark As Read    

Address: 1886 Eastland Ave, Nashville, TN 37206 Date: 4-16-2022SSID: uglymugsguestPassword: lovecoffeeDown: 30MbpsUp: 10MbpsProvider: Xfinity Comcast

KraFusion 733 days ago

S3FS + UpdateDB = Billing Increase

 Mark As Read    

If you are using s3fs to mount an S3 bucket to your server and have noticed a huge increase in ListBucket and HeadObject calls in your Billing. The calls will increase you AWS bill and depending on how many objects you have in your bucket, it could be significant. Day over day I saw "Requests-Tier2" - The number of GET and all other non-Tier1 reque...

KraFusion 896 days ago

Dyson AM09 Fan & Heater H2 Error

 Mark As Read    

No idea what the actual error is and I couldn't find anything useful on the web, so hopefully this will help someone else.I assumed that the H2 error meant that something was dirty, clogged up or that it was overheating because it was dirty or clogged up because the error only showed up when it was in Heater mode.The heater would run for about 30 s...

KraFusion 2188 days ago

Replacing your HDD with SSD in a Mid-2009 Mac

 Mark As Read    

What you'll need:T6 screwdriverPH000 philips screwdriverSATA to USB connector ( or SATA to Thunderbolt if you feel like spending the cash)Apples DiskUtility ApplicationBefore we swap the drives out we want to test our speeds so that we can compare with what we get afterwards. You can run the below commands a few times, then take an average if you w...

KraFusion 2246 days ago

ColdFusion to Sails.js Conversion : Find/Replace Tips/Tricks

 Mark As Read    

Use your IDE of choice, I prefer Sublime Text because it uses the Perl Compatible Regular Expressions (PCRE) engine from the Boost library and I love me some regex. I will show examples for .js syntax, but if you need this in .ejs format just add <% to the beginning and %> to the end like in the first example below. I always have the case se...

KraFusion 2381 days ago

ColdFusion to Node.js Conversion Part 1

 Mark As Read    

This multi-part post will be community comment driven, which basically means that in an effort to not spend too much time on details that might not matter to the viewers out there, I am only going to share the details which I think are important at the time of publishing the posts. If people (or bots) comment and want more details, I will add them ...

KraFusion 2822 days ago

Bitnami WordPress htaccess Redirect for Author Pages

 Mark As Read    

As their page notes, for security purposes, the htaccess configuration has been moved outside of the webroot and AllowOverride is set to "None" https://wiki.bitnami.com/Components/Apache/htaccess_configuration. In this instance I have an EC2 instance spun up from a BitNami (HVM) AMI. The default file to edit is /opt/bitnami/apps/wordpress/conf/hta...

KraFusion 2865 days ago

CfWheels and Controller Init Caching Gotcha

 Mark As Read    

I recently discovered an issue where logic inside of a controllers init gets cached when your environment is set to production. By default, when in the production environment the cfwheels setting of cacheControllerInitialization defaults to true.At the time I had logic in the init method that checks if the user agent is CFSCHEDULER and the remote a...

KraFusion 3084 days ago

ColdFusion Invalid Image Format Solution

 Mark As Read    

For those who have gotten the following error:"java.awt.color.CMMException: Invalid image format" and triedthe solutions posted here with no avail. We are going to use the power of Java's JAI (Java Advanced Imaging) library to tackle this one.<cfscript>//path to imageimagePath = "pathToImage";//create java file object, passing in path to im...

KraFusion 4075 days ago

Show hidden files on Mac

 Mark As Read    

To make hidden files visible in Finder, run this command in Terminal defaults write com.apple.finder AppleShowAllFiles -bool true To hide hidden files again in Finder, run this command in Terminal defaults write com.apple.finder AppleShowAllFiles -bool false Run this command to restart Finder, so that either one of the above commands will take effe...

KraFusion 4171 days ago

Fixing DNS issue on MacBook Pro

 Mark As Read    

This may be an issue with 10.6(Snow Leopard) altogether or just with the MacBook Pros, but every once in a while the internal DNS settings get hung up or crap out or just stop working!You're connected to the internet, you've checked the connections, you've got on other devices , you've asked co-workers if they are having issues with the internet, y...

KraFusion 4726 days ago

CFBuilder 2 Tour comes to Nashville this week!

 Mark As Read    

WHEN: Thursday, April 21st, 2011 at 6:00pm CDTWHERE: Russ Carroll Financial Peace Conference Center,1749 Mallory Lane, Brentwood, Tennessee 37027 Map of LocationSPEAKER: Greg Wilson - Adobe evangelist for AIR, ColdFusion, Flex and LiveCycle ESWHAT: Greg Wilson from Adobe will be here to talk about CFBuilder 2, ColdFusion, and even some Fle...

KraFusion 4747 days ago

Flex getItemAt() function vs Array Notation

 Mark As Read    

Just a quick tip I found while doing some debugging on a Flex project I am working on.While myArray.getItemAt(0).firstname and myArray[0].firstname return the same value, the getItemAt() function will save you ten steps. By ten steps I mean that 10 steps after the compiler hits the line that says myArray[0].firstname, it will run the getItemAt() f...

KraFusion 5357 days ago

Adobe ColdFusion tour coming to Nashville!

 Mark As Read    

WHO:Greg Wilson (an AIR, ColdFusion, Flex, LiveCycle ES evangelist at Adobe)WHAT: Greg will be discussing new features in ColdFusion, how ColdFusion integrates with other Adobe technologies like AIR, Flex and LCDS. Also, Greg will be showing some demo's of the new features that are going to be in the next ColdFusion release....

KraFusion 5427 days ago

Try/Catch in OnError function of Application.cfc

 Mark As Read    

So you're stoked that you switched to application.cfc and you wont have to see those hard ColdFusion errors since app cfc has the OnError function? Sorry to bust your bubble, but what if your OnError function throws an error(referencing a variable that isn't present for example)? Then what? That's right, a hard ColdFusion error will be shown and ho...

KraFusion 5503 days ago

State of Tennessee Pays $135M for Edison Program

 Mark As Read    

This is one of the top stories in Nashville right now, because the program is so horrible and so much money was spent on it. 135 million dollars!!! I would have happily done it for $1 Million and I would have made sure it was done right! Also, this could be one of the main contributors to State employees not getting a raise this year. They are no...

KraFusion 5507 days ago

ColdFusion Val() function Gotcha.

 Mark As Read    

Try this and you will see what i am talking about<cfdump var="#Val(08234)#"><cfdump var="#Val(80234)#">You will see that in the first dump strips the 0 off of the number leaving you with 8234...not good for people that believe in wrapping Val() around everything that should be numeric. NOTE: It doesn't matter if there is one 0 or 20 at ...

KraFusion 5508 days ago

You might be a geek if...

 Mark As Read    

you have said the following in the past or something similar:1. 'Did you cfflush after you cfdump'd?'2. 'That cfm is bombing out on me!'3. 'The Reggie's funky' (translation: The RegEx is funky.)this post will be ongoing as i think of more...

KraFusion 5508 days ago

Want to view a summary of your ColdFusion Components

 Mark As Read    

If you need a quick overview of one of your ColdFusion components for documentation purposes for example, here is how you do it.Go to your browser of choice and type in the URL you use to get to your CF Administrator. For example, I access my CF Administrator with: http://127.0.0.1:8302/CFIDE/administrator/index.cfmNext delete everything after the...

KraFusion 5511 days ago

CFUNITED 09 Announced

 Mark As Read    

CFUNITED 09 was just announced with dates, venue and early bird date. Info is as follows:Dates: August 11th, 2009 Pre-Conference Classes August 12th-15th, 2009 Main event (repeat sessions on Saturday)Venue: Lansdowne Resort 44050 Woodridge Parkway Lansdowne, VA 20176Early Bird Date: December 31st, 2009For more informatio...

KraFusion 5636 days ago

Using CFQueryParam in Order By Clause

 Mark As Read    

With all of the SQL Injection attacks going on in the ColdFusion world I thought that it may be beneficial to show everyone a way that I know of to have cfqueryparam'd 'Order By' clauses. If anyone knows of other ways to accomplish this, please feel free to post a comment on how to do so.<cfquery name="GetData" datasource="#APPLICATION.DataSourc...

KraFusion 5722 days ago

Flex 3/AIR Event Today

 Mark As Read    

If you live in/around Nashville and you like to learn about Flex,Flash or AIR you should check out this event.Flex 3/AIR Event

KraFusion 5929 days ago

Musicians and their Ego's

 Mark As Read    

Just got done reading the December '07 issue of the Rolling Stones and I am disappointed to hear that the Red Hot Chili Peppers are filing a lawsuit against Showtime because one of their shows, Californication, just so happens to be the name of one of the Chili Pepper's albums. The lead singer is quoted as saying "For some TV show to come along an...

KraFusion 5949 days ago

Javascript Substring() Function Cross-Browser Differences

 Mark As Read    

I found something interesting while working on some Javascript form submission code. The problem was that the form was only submitting in IE and not in FireFox. After some troubleshooting I was able to determine that the Substring function is different between the two browsers. Here is an example if you want to give it a try.<script language='ja...

KraFusion 5978 days ago

Combining Select and Insert into the same CFQuery tag

 Mark As Read    

So you want to grab some values and insert them into a table.Here is the hard way.<cfquery name="selectQuery" datasource="#application.dsn.db2#"> SELECT Setting1,Setting2,Setting3 FROM defaultSettings WHERE ID = 101</cfquery><cfquery name="insertQuery" datasource="#application.dsn.db#">INSERT INTO Settings (TS, Name...

KraFusion 6005 days ago

Using SQL's Scope_Identity

 Mark As Read    

So you want to get the ID(PrimaryKey) of the last record inserted into the database without having to do a second cfquery block. Here is an example of doing it the hard way.<cfset value1 = 2007><cfset myuuid = CreateUUID()><cfquery name="insert" datasource="#APPLICATION.DSN.DB#"> INSERT INTO table(column1,column2) VALUES(#VA...

KraFusion 6020 days ago
Coldfusion
Welcome!
cfNote aggregates blogs for the Coldfusion industry.
Custom Feeds
Add any RSS feed to the information you read daily.
Blocked Feeds
Block feeds to remove blogs you’re not interested in.
Account Settings
Customize the site by adding or removing feeds.

About Us

cfNote is your source for all your Coldfusion news.

Have a Suggestion for Us?
Know of a Coldfusion blog that we're missing? Let us know!

Share cfNote.com