|
-
как говорится, попытка - не пытка
Date: 05/06/14
Keywords: html
горячие калифорнийские .... пишут:
// Try replacing both lowercase utf-8 and upper UTF-8 and similar combinations. // Covering all cases here. $html = str_replace('', '', $html); $html = str_replace('', '', $html); $html = str_replace('', '', $html); $html = str_replace('', '', $html);
Source: https://code-wtf.livejournal.com/220115.html
-
Don't lambda the lambda unless the lambda lambdas you
Date: 04/05/14
Keywords: no keywords
// C#, .NET Framework 4.0 (or 4.5, with the same result)
private void ExecuteOnWorkerThread(Action action)
{
Task.Factory.StartNew(()=>action, CancellationToken.None, TaskCreationOptions.PreferFairness, TaskScheduler.Default);
}
Source: http://code-wtf.livejournal.com/219440.html
-
Don't lambda the lambda unless the lambda lambdas you
Date: 04/05/14
Keywords: no keywords
// C#, .NET Framework 4.0 (or 4.5, with the same result)
private void ExecuteOnWorkerThread(Action action)
{
Task.Factory.StartNew(()=>action, CancellationToken.None, TaskCreationOptions.PreferFairness, TaskScheduler.Default);
}
Source: https://code-wtf.livejournal.com/219440.html
-
Великолепно абсолютно всё.
Date: 02/03/14
Keywords: no keywords
https://github.com/akalend/libscgi/blob/master/scgiServer.cpp
Source: http://code-wtf.livejournal.com/219212.html
-
Великолепно абсолютно всё.
Date: 02/03/14
Keywords: no keywords
https://github.com/akalend/libscgi/blob/master/scgiServer.cpp
Source: https://code-wtf.livejournal.com/219212.html
-
Забавный html+js
Date: 03/18/13
Keywords: html, java
Недавно начал учить html и тут наткнулся на код со следующим скриптом.
Вот весь код:
Javascript example
The count is: 0
Это как секундомер, только круче) Сохраните это в блокноте в формате .html, а потом открой те в браузере)
Source: http://code-wtf.livejournal.com/217954.html
-
Забавный html+js
Date: 03/18/13
Keywords: html, java
Недавно начал учить html и тут наткнулся на код со следующим скриптом.
Вот весь код:
Javascript example
The count is: 0
Это как секундомер, только круче) Сохраните это в блокноте в формате .html, а потом открой те в браузере)
Source: https://code-wtf.livejournal.com/217954.html
-
atomic shmatomic
Date: 03/11/13
Keywords: no keywords
if (atomic_read(&var)) { atomic_dec(&var); ... }
UPD: Удовлетворяя запрос сообщества на контекст: всё действительно настолько просто, насколько кажется - автор использовал эту конструкцию в качестве неожиданной замены atomic_add_unless(&var, -1, 0);
Source: http://code-wtf.livejournal.com/217670.html
-
atomic shmatomic
Date: 03/11/13
Keywords: no keywords
if (atomic_read(&var)) { atomic_dec(&var); ... }
UPD: Удовлетворяя запрос сообщества на контекст: всё действительно настолько просто, насколько кажется - автор использовал эту конструкцию в качестве неожиданной замены atomic_add_unless(&var, -1, 0);
Source: https://code-wtf.livejournal.com/217670.html
-
Отрицание от JodaTime (java)
Date: 02/28/13
Keywords: no keywords
if (readableInstant instanceof ReadableInstant == false) {
return false;
}
Source: http://code-wtf.livejournal.com/217582.html
-
Отрицание от JodaTime (java)
Date: 02/28/13
Keywords: no keywords
if (readableInstant instanceof ReadableInstant == false) {
return false;
}
Source: https://code-wtf.livejournal.com/217582.html
-
bash mad skills
Date: 02/27/13
Keywords: no keywords
git pull && [ $? -ne 0 ] && { ... }
Source: http://code-wtf.livejournal.com/217164.html
-
bash mad skills
Date: 02/27/13
Keywords: no keywords
git pull && [ $? -ne 0 ] && { ... }
Source: https://code-wtf.livejournal.com/217164.html
-
Найдено в коде джуниора
Date: 02/25/13
Keywords: no keywords
var arr = a.Path.Split("/".ToCharArray()[0]);
Source: http://code-wtf.livejournal.com/216613.html
-
Найдено в коде джуниора
Date: 02/25/13
Keywords: no keywords
var arr = a.Path.Split("/".ToCharArray()[0]);
Source: https://code-wtf.livejournal.com/216613.html
-
javascript
Date: 02/20/13
Keywords: no keywords
function DialogBoxWidget_getContainerHeight()
// Get the height of the container
// Returns : [int] the height
{
var o=this
return o.height-(2+18+2+2+2)
}
Source: http://code-wtf.livejournal.com/216563.html
-
Мелочь конечно но забавно
Date: 03/13/09
Keywords: no keywords
public void executeUpdateAlgorithm(Map parameters) throws Exception, DaoException { }
те "Осторожно злой алгоритм! Кидается ексепшенами, особенно Дао"
Source: http://community.livejournal.com/code_wtf/161122.html
-
Чрезмерное увлечение ООП до добра не доведет...
Date: 03/12/09
Keywords: no keywords
.h:
#ifndef __TIMESTEPCONSTANT_H__ #define __TIMESTEPCONSTANT_H__ #include "../Common/stdex/singleton.h" class CTimeStepConstant { public: DWORD GetTimeStepSeconds(); }; typedef stdex::singleton< CTimeStepConstant > TimeStep; #endif // __TIMESTEPCONSTANT_H__ .cpp:#include "stdafx.h" #include "TimeStepConstant.h" namespace { const DWORD g_dwTimeStepSeconds = 60; } DWORD CTimeStepConstant::GetTimeStepSeconds() { return g_dwTimeStepSeconds; }
Source: http://community.livejournal.com/code_wtf/161003.html
-
Глубина-глубина, я не твой
Date: 03/09/09
Keywords: no keywords
Сейчас буду рефакторить такое вот чудо:
public GeneralPrefs(bool mSaveArticleList, bool mIgnoreNoBots, System.Windows.Forms.ComboBox.ObjectCollection mSummaries, string mSelectedSummary, string[] mPasteMore, string mFindText, bool mFindRegex, bool mFindCaseSensitive, bool mWordWrap, bool mToolBarEnabled, bool mBypassRedirect, bool mAutoSaveSettings, bool mPreParseMode, bool mNoAutoChanges, int mOnLoadAction, bool mMinor, bool mWatch, bool mDoNotWatch, bool mTimerEnabled, bool mSortListAlphabetically, bool mAddIgnoredToLog, int mTextBoxSize, string mTextBoxFont, bool mLowThreadPriority, bool mBeep, bool mFlash, bool mMinimize, decimal mTimeOutLimit, bool autoSaveEditBoxEnabled, decimal autoSaveEditBoxPeriod, string autoSaveEditBoxFile, bool mLockSummary, bool mEditToolbarEnabled, bool mSuppressUsingAWB, bool mAddUsingAWBToActionSummaries, bool mfilterNonMainSpace, bool mAutoFilterDupes, bool mSortInterWikiOrder, bool mReplaceReferenceTags, bool mFocusAtEndOfEditBox)
Source: http://community.livejournal.com/code_wtf/160275.html
-
Вот так мы программируем на питоне...
Date: 02/27/09
Keywords: no keywords
Вот так мы программируем чат в нашем клиент-серверном приложении:
def sendMess(self, dt, sender, mess): '''рассылка сообщений участникам чата''' curtime = str(datetime(dt[0], dt[1], dt[2], dt[3], dt[4], dt[5])) dt = datetime(dt[0], dt[1], dt[2], dt[3], dt[4], dt[5])
* This source code was highlighted with Source Code Highlighter.
Ну, и в конструкторе класса описывающего, если верить комментариями, канал обмена сообщениями с пользователями есть такие прекрасные строчки:
self.out_flags = [False, False, False, False, False, False, False, False, False, False, False, False] self.tabletabs = [False, False, False, False, False]
* This source code was highlighted with Source Code Highlighter.
Source: http://community.livejournal.com/code_wtf/159806.html
|