PHP開発でget_magic_quotes_gpc関数を利用するソースコード
PHPコード:
<html>
<!–POSTで単一引用符号を渡す –>
<body>
<form action=”first ...
「Android学習」ListScrollView、ScrollViewの使い方を利用するサンプルコード
Javaコード:
public class ListScrollView extends ScrollView {
private List list = new ArrayList();
private in ...
「Android初心者」ListViewの高さを計算するソースコード
サンプルコード:
public class Utility {
public static void setListViewHeightBasedOnChildren(ListView listView) {
AndroidでTextViewを動的に切り替える方法まとめ
AndroidでTextViewを動的に切り替える方法まとめ
例1右方向画像の設定方法
Drawable drawable = getResources().getDrawable(R.drawable.hotel ...
iOS8で「application badge value」を設定するサンプルコード
1.エラーメッセージ
Attempting to badge the application icon but haven’t received permission from the user to badge ...
Linuxで現在ディレクトリにfindを利用してあいまいな条件でファイルを検索する
1.現在のディレクトリの直下にファイルを検索
find . -name startnews24com_test.txt
2.現在のディレクトリの下にあいまいな条件でファイルを検索
find . -name ...
stdinInputモジュールをインポートしてPythonのリストをソートするアルゴリズムを実装
サンプルコード:
#!/usr/bin/env python
#coding=utf-8
#ChooseSort.py
#user can choose sort style: desc(1) or a ...
「Python学習」pythonで二分木(Binary Tree)アルゴリズムを利用するサンプルコード
参考コード:
#!/usr/bin/env python
# coding=utf-8
# inorderBL.py
import stdinInput
def inorder(arra ...
Python のリストをバブルソート(bubble sort)アルゴリズムを実装するサンプルコード
サンプルコード
#!/usr/bin/env python
#coding=utf-8
#BubbleSort.py
#user can choose sort style: desc(1) or as ...
「Python学習」pythonでバブルソート(bubble sort)を利用するサンプルコード
サンプルコード:
#!/usr/bin/env python
#coding=utf-8
# stdinInput.py
intsortArrays=[]
def stdinInput( ...
Linuxでshellのif文にスペースとセミコロンの使い方
参考ソースコード
#!/bin/bash
if ; then
echo “inpuT date is:” $1 “,time is:” $2
da ...
「shell」Linuxで日付の処理方法
機能:
20分ごとに3分を増加
1.時間を編集
startnews24.sh
参考コード
echo $(date +”%H:%M” ) >/root/home/ ...
「Objective-C」AFNetworkReachabilityManagerを利用する方法
1.ネットワークをモニター
startMonitoring]
2.参考ソースコード
setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatu ...
「JavaScript学習」正規表現のtest()とexec()を利用する方法
参考コード
<html>
<head>
<script type=”text/javascript”>
function startnew ...
「Objective-C」iosで画像の幾何学変換のサンプルコード
参考ソースコード:
+ (UIImage *)thumbnailWithImageWithoutScale:(UIImage *)image
size:(CGSize)asize
{
UIImage * ...
iOS8でのプッシュ(push)通知の実装プログラムコード
サンプルコード:
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ( systemVersion] compare:v options:NSNumericSearch] ! ...
iOS8向けplistを作成するサンプルコード
参考ソースコード
+ (NSString *)getFilePath
{
NSString *path = stringByAppendingPathComponent:@”photo.p ...
Objective-CでNSStringからHEX(c)への変換方法
参考ソースコード
#define HEXCOLOR(c)
;
baseView.backgroundColor = HEXCOLOR(strtoul(,0,16));